

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? for i in range(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 |
Answer» E. | |