本节内容: 判断字符是否为中文
例子:
#!/usr/bin/python # #site:www.jb200.com
""" 判断unicode码是否为中文字符. """ def is_cn_char(i): return 0x4e00<=ord(i)<0x9fa6 def is_cn_or_en(i): o = ord(i) return o<128 or 0x4e00<=o<0x9fa6
CopyRight © 2010-2021 脚本学堂 Jb200.com , All Rights Reserved.