Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
1,315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. for x in range(10):
  2.     # some actions
  3.  
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement