Q. What is the output of the following code?
Code:
for i in range(5):
print(i)
β
Correct Answer: (C)
0 1 2 3 4
for i in range(5):
print(i)
You must be Logged in to update hint/solution