+ 1
what is the output??
for I in range(10): i+10 print(i)
1 Answer
+ 2
Traceback (most recent call last):
File "<stdin>", line 2 in <module>:
NameError: Name 'i' is not defined.
#Or maybe something similar.
for I in range(10): i+10 print(i)