Emania

Untitled

Jan 12th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. # works fine
  2. l = [(1, 2, 3), (2, 3, 4)]
  3. for e in l:
  4. process(l)
  5.  
  6. # works bad
  7. l = [(1, 2, 3)]
  8. for e in l:
  9. process(l)
Advertisement
Add Comment
Please, Sign In to add comment