Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
1,323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. for x in range(10):
  2.     # some actions
  3.     with escapable() as escape:
  4.         for y in range(10):
  5.             # some another actions
  6.  
  7.             for z in range(10):
  8.                 # yet another actions
  9.                 if x > 5 and y > 5 and not z % 2:
  10.                     # iter next from first for cycle
  11.                     escape.escape()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement