码迷,mamicode.com
首页 > 其他好文 > 详细

pyhton 判断字符穿中字符类型的常用方法

时间:2014-12-10 12:04:58      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:blog   http   sp   on   log   bs   ef   as   tt   

  1. s为字符串 
  2. s.isalnum() 所有字符都是数字或者字母 
  3. s.isalpha() 所有字符都是字母 
  4. s.isdigit() 所有字符都是数字 
  5. s.islower() 所有字符都是小写 
  6. s.isupper() 所有字符都是大写 
  7. s.istitle() 所有单词都是首字母大写,像标题 
  8. s.isspace() 所有字符都是空白字符、 、、 
  9.  
  10. 判断是整数还是浮点数 
  11. a=123 
  12. b=123.123 
  13.  
  14. >>>isinstance(a,int) 
  15. True 
  16. >>>isinstance(b,float) 
  17. True 
  18. >>>isinstance(b,int) 
  19. False  

本文出自 “王伟” 博客,请务必保留此出处http://wangwei007.blog.51cto.com/68019/1108673

pyhton 判断字符穿中字符类型的常用方法

标签:blog   http   sp   on   log   bs   ef   as   tt   

原文地址:http://www.cnblogs.com/Seeutommorrow/p/4154841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!