Guest User

Untitled

a guest
Sep 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. >>> l = [1, 2]
  2. >>> id(l)
  3. 4299501792
  4. >>> l += [3]
  5. >>> l
  6. [1, 2, 3]
  7. >>> id(l)
  8. 4299501792
  9. >>>
  10.  
  11. >>> t = (1, 2)
  12. >>> id(t)
  13. 4299554112
  14. >>> t += (3, )
  15. >>> id(t)
  16. 4299592240
  17. >>>
Add Comment
Please, Sign In to add comment