# 编程之家 (jb51.cc)
def is_chinese(uchar):
"""判断一个unicode是否是汉字"""
if uchar >= u'\u4e00' and uchar<=u'\u9fa5':
return True
else:
return False
# End 512.笔记 jb51.cc
原文链接:https://www.f2er.com/python/526841.html