0
how to remove indentation error in this program?
x=list[range(0,100,2)] for a in x: print(a*2)
2 Respuestas
+ 4
give 4 spaces in the line after the 'for' loop
x=list[range(0,100,2)]
for a in x:
print(a*2)
0
x=list[range(0,100,2)]
for a in x:
print(a*2)