Open In App

Python | Operators | Question 4

Like Article
Like
Save
Share
Report

What is the output of the following program : 

Python3




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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Share your thoughts in the comments
Similar Reads