Guest User

Untitled

a guest
Oct 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. >> a = [1,2]
  2. >> for x in a:
  3. >> print x
  4. >> a.remove(x)
  5. >> print a
  6.  
  7. >> 1
  8. >> [2]
  9.  
  10. >> a = [1,2]
  11. >> b = list(a)
  12. >> for x in b:
  13. >> print x
  14. >> a.remove(x)
  15. >> print a
Add Comment
Please, Sign In to add comment