0
Syntax error
Expected an indent block
3 Answers
+ 3
Because Python isn ' t using curly brackets for blocks, you have to do a correct indent:
Correct:
while x < 3:
//Here Stuff
Wrong
while x < 3:
//Here Stuff
+ 1
You're talking about Python?
0
Yes
Expected an indent block