Python判断字符是否为中文

# Python判断字符是否为中文
ch = '中'
if '\u4e00' <= ch and ch <= '\u9fa5':
print('是中文')
else:
print('不是中文')