Open In App

Python | Operators | Question 4

What is the output of the following program : 




i = 0
while i < 3:
       print i
       i++
       print i+1

(A)



0 2 1 3 2 4

(B)



0 1 2 3 4 5

(C)

Error

(D)

1 0 2 4 3 5

Answer: (C)
Explanation:

There is no operator ++ in Python

Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :