Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. 186590cf3c59:~ cladam$ python
  2. Python 2.7.10 (default, Feb 7 2017, 00:08:15)
  3. [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> a = "adam"
  6. >>> id(a)
  7. 4354169568
  8. >>> b = a
  9. >>> a
  10. 'adam'
  11. >>> b
  12. 'adam'
  13. >>> id(b)
  14. 4354169568
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement