Q. Write the output of the following code :
Code:
for i in range(0,2,-1):
print("Hello")
β
Correct Answer: (C)
No Output
for i in range(0,2,-1):
print("Hello")
You must be Logged in to update hint/solution