+ 1
I Wright this and they Say break outside loop
i=0 while i<10: i+=1 print(i) if i==3: print('breaking') if i==5: print('breaking') break print(i)
2 Respuestas
+ 3
I believe they are talking about the indentation of your ifs.
+ 1
Thank you
I solved it