Python 字符串判断

以下代码演示了Python字符串的判断:

  1. # Filename : test.py
  2. # author by : python3
  3.  
  4. # 测试实例一
  5. print("测试实例一")
  6. str = "baidu.com"
  7. print(str.isalnum()) # 判断所有字符都是数字或者字母
  8. print(str.isalpha()) # 判断所有字符都是字母
  9. print(str.isdigit()) # 判断所有字符都是数字
  10. print(str.islower()) # 判断所有字符都是小写
  11. print(str.isupper()) # 判断所有字符都是大写
  12. print(str.istitle()) # 判断所有单词都是首字母大写,像标题
  13. print(str.isspace()) # 判断所有字符都是空白字符、\t、\n、\r
  14.  
  15. print("------------------------")
  16.  
  17. # 测试实例二
  18. print("测试实例二")
  19. str = "baidu"
  20. print(str.isalnum())
  21. print(str.isalpha())
  22. print(str.isdigit())
  23. print(str.islower())
  24. print(str.isupper())
  25. print(str.istitle())
  26. print(str.isspace())

执行以上代码输出结果为:

  1. 测试实例一
  2. False
  3. False
  4. False
  5. True
  6. False
  7. False
  8. False
  9. ------------------------
  10. 测试实例二
  11. True
  12. False
  13. False
  14. True
  15. False
  16. False
  17. False