【转】判断字符串是否是中文

原文链接:https://www.jb51.net/article/153637.htm

 

# 检验是否含有中文字符
def isContainChinese(s):
    for c in s:
        if ('\u4e00' <= c <= '\u9fa5'):
            return True
    return False


# 检验是否全是中文字符
def isAllChinese(s):
    for c in s:
        if not ('\u4e00' <= c <= '\u9fa5'):
            return False
    return True

  

posted on 2020-08-22 00:26  不知所以随风飘动  阅读(326)  评论(0编辑  收藏  举报

导航