Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. >>> t = True
  2. >>> t
  3. True
  4. >>> type(t)
  5. <type 'bool'>
  6. >>> f = False
  7. >>> f
  8. False
  9. >>> type(f)
  10. <type 'bool'>
  11. >>> isinstance(t, int)
  12. True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement