Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # int
  2. a = 42
  3.  
  4. # float
  5. pi = 3.14
  6.  
  7. # complex
  8. z = 1+2j
  9.  
  10. # str
  11. greating = 'Welcome'
  12.  
  13. # bytes
  14. hashcode = b'ascii symbols only'
  15. null_byte = b'\0'
  16.  
  17. # bool (True, False)
  18. to_be = True
  19. to_be or not to_be # True
  20.  
  21. # NoneType
  22. None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement