0
I don't get it why isnt the output 5 6 7 8 9 i=5 while i<=10: print(i) i=i+1 if i==9: break output= 5 6 7 8
5 Answers
+ 7
If you want it to print 9, put the print(i) line after the i = i + 1 line.
+ 1
why should it be 5 6 7 8 9 in your opinion?
0
because it's suppose to stop if it nine
0
which it does
0
oh ye sorry