0
Indentational error in python
4 Answers
+ 1
for i in range(1,5):
if 1%5==0:
break
else:
print(r ,end=',')
print(i)
Last line could be within else block or for block or could be a top level statement
You must also assign
variable r
A value.
+ 6
Hi bro,
Just like in other languages for seeing the blocks we use bracket in Python we use tab space also called indentation
more info in Google
Happy Learning đ
+ 1
What you are trying do to in the code??
0
NEZ doin' some beginners lv practice...