adplus-dvertising
frame-decoration

Question

What is the output of the following?
i = 1
while True:
    if i%0O7 == 0:
        break
    print(i)
    i += 1

a.

1 2 3 4 5 6

b.

1 2 3 4 5 6 7

c.

error

d.

none of the mentioned

Posted under Loops in Python Python

Answer: (a).1 2 3 4 5 6

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following?

Similar Questions

Discover Related MCQs