What is the output of the following code ?
for i in range(0): print(i)
-1
0
1
None of the above
range(0) results in empty object
print(list(range(0))) -> []
Comment here: