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
0
Answer:
The output of the python program is: 0120
Similar questions