VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python判断字符是否是中文

Python笔记

作者:iJonas

Python判断字符是否是中文

def isChinese(word):
    for ch in word:
        if '\u4e00' <= ch <= '\u9fff':
            return True
    return False

print(isChinese('一'))
print(isChinese('1'))

运行示例

中文编码对应表


相关教程