Bootstrap

python识别中文字符_python判断字符串是否包含中文

原理:

中文字符的编码范围是:u4e00 - u9fff

只要编码在此范围就可判断为中文字符

以下代码Python2下测试有效

判断字符串中是否包含中文def is_contain_chinese(check_str):

"""

判断字符串中是否包含中文

:param check_str: {str} 需要检测的字符串

:return: {bool} 包含返回True, 不包含返回False

"""

for ch in check_str:

if u'u4e00' <= ch <= u'u9fff':

return True

return False

整个字符串都是中文def is_chinese(string):

"""

检查整个字符串是否为中文

Args:

string (str): 需要检查的字符串,包含空格也是False

Return

bool

"""

for chart in string:

if chart  u'u9fff':

return False

return True

;