0
num=1 while num <=10: print (num) num+=1 print'done'
can't figure out the error
4 Answers
+ 2
seems you forget to indent the body of the while loop
0
oh thanks
0
Probably want to print number after you add 1 to it.
0
indent the contents of while first