色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

python的字符是中文還是英文

洪振霞2年前13瀏覽0評論

python的字符是中文還是英文?

#-*- coding:utf-8 -*-

#python 判斷字符串是中文還是英文,只要有一個中文就算中文。

import sys

reload(sys)

sys.setdefaultencoding('utf8')

def check_contain_chinese(check_str):

for ch in check_str.decode('utf-8'):

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

return True

return False

if __name__ == "__main__":

print check_contain_chinese('i love yiu ')

print check_contain_chinese('i love you')

print check_contain_chinese('xx中國')