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

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何判断字符是不是汉字?