Computer Science, asked by BishalSarkar01, 3 months ago

What will be the output of the following Python code?

i = 0 while i < 3: print(i) i += 1 else: print(0)

Answers

Answered by maya3227
0

Answer:

The output of the python program is: 0120

Similar questions