adplus-dvertising
frame-decoration

Question

What is the output of the following?
for i in range(int(float('inf'))):
    print (i)

a.

0.0 0.1 0.2 0.3 …

b.

0 1 2 3 …

c.

0.0 1.0 2.0 3.0 …

d.

none of the mentioned

Posted under Loops in Python Python

Answer: (d).none of the mentioned

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