Python 检查字符串是否包含中文

包含中文返回true,不包含返回false

def is_Chinese(string):
    for ch in string:
        if u'\u4e00' <= ch <= u'\u9fff':
            return True
    return False

你可能感兴趣的:(Python 检查字符串是否包含中文)