Advertisement
B1KMusic

Untitled

Feb 7th, 2015
1,080
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. >>> def loop():
  2. ...   i, j = 0, 0
  3. ...   while i < 100:
  4. ...     while j < 100:
  5. ...       if terminate: break
  6. ...       j += 1
  7. ...     if j < 100: break
  8. ...     i += 1
  9. ...   print(i, j)
  10. ...
  11. >>> terminate = 0
  12. >>> loop()
  13. 100 100
  14. >>> terminate = 1
  15. >>> loop()
  16. 0 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement