python如何判断字符是不是汉字?
python判断字符是否是中文的代码如下:
def isChinese(word): for ch in word: if 'u4e00' <= ch <= 'u9fff': return True return False
运行示例:
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html
python判断字符是否是中文的代码如下:
def isChinese(word): for ch in word: if 'u4e00' <= ch <= 'u9fff': return True return False
运行示例:
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html