Advertisement
cooperlees

Untitled

Sep 13th, 2017
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. cooper-mbp:bandersnatch cooper$ python3
  2. Python 3.6.2 (default, Jul 17 2017, 16:44:45)
  3. [GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> a = u'cooper'
  6. >>> b = 'cooper'
  7. >>> a == b
  8. True
  9. >>> type(a)
  10. <class 'str'>
  11. >>> type(b)
  12. <class 'str'>
  13. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement