Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. This:
  3.  
  4. for ANYTHING_YOUR_HEART_DESIRES in SOME_SORT_OF_SEQUENCE:
  5. print ANYTHING_YOUR_HEART_DESIRES
  6.  
  7. is equivalent to this:
  8.  
  9. i = 0
  10. while i < len(SOME_SORT_OF_SEQUENCE):
  11. ANYTHING_YOUR_HEART_DESIRES = SOME_SORT_OF_SEQUENCE[i]
  12. print ANYTHING_YOUR_HEART_DESIRES
  13. i += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement