python文字列に中国語文字が含まれているかどうかを判断します
1118 ワード
# python ,
# ord() unicode 255 。
def is_contain_chinese(check_str):
#check_str unicode 。
#check_str=u'fff '
for ch in check_str:
#if u'\u4e00' <= ch <= u'\u9fff':
if ord(ch) > 255:
print(ch)
参照ドキュメント:https://blog.csdn.net/mouday/article/details/81512870
転載先:https://www.cnblogs.com/taoyuanming/p/10825558.html