Guest User

Untitled

a guest
Feb 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. >>> v = 'test'
  2. >>> isinstance(v, str)
  3. True
  4.  
  5. >>> t = 2
  6. >>> isinstance(p, int)
  7. True
  8.  
  9. >>> v.isalnum()
  10. True
  11. >>> v.isalpha()
  12. True
  13. >>> v.isdigit()
  14. False
  15. >>> v.islower()
  16. False
Add Comment
Please, Sign In to add comment