当前位置:   article > 正文

python 判断字符串是否是汉字,数字,英语或其他_python识别非数字,非文字,非符号

python识别非数字,非文字,非符号

编程思路:
1.用def定义四个函数,分别是用来判断汉字,数字,英语或其他(如下列代码所示)
2.最前面添加一个输入语句。最后面添加一个选择和输出同时的语句即可

  1. def is_chinese(uchar):
  2. """判断一个unicode是否是汉字"""
  3. if uchar >= u'\u4e00' and uchar<=u'\u9fa5':
  4. return True
  5. else:
  6. return False
  7. def is_number(uchar):
  8. """判断一个unicode是否是数字"""
  9. if uchar >= u'\u0030' and uchar<=u'\u0039':
  10. return True
  11. else:
  12. return False
  13. def is_alphabet(uchar):
  14. """判断一个unicode是否是英文字母"""
  15. if (uchar >= u'\u0041' and uchar<=u'\u005a') or (uchar >= u'\u0061' and uchar<=u'\u007a'):
  16. return True
  17. else:
  18. return False
  19. def is_other(uchar):
  20. """判断是否非汉字,数字和英文字符"""
  21. if not (is_chinese(uchar) or is_number(uchar) or is_alphabet(uchar)):
  22. return True
  23. else:
  24. return False

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/571609
推荐阅读
相关标签
  

闽ICP备14008679号