判断字符串是否有中文

解决方案
需要判断一个字符串中是否有中文时
使用以下代码判断
def is_contain_chinese(check_str):
for ch in check_str:
if u’\u4e00’ <= ch <= u’\u9fff’:
return True
return False