+ 2
I recently started learning python...
What does it mean if break is outside the loop?
2 odpowiedzi
+ 7
Eben Erasmus ,
a ``break`` statement outside a loop raises a *syntax error*, since break is only valid inside for... or while... loops.
+ 2
It will result in an error