python如何判斷字符是中文還是英文字母?
逐個字符用ord()判斷ascii碼a - z : 97 - 122A - Z : 65 - 90def is_english_char(ch): if ord(ch) not in (97,122) and ord(ch) not in (65,90): return False return True上面函數(shù)可以辨別字符是否為英文字符
python如何判斷字符是中文還是英文字母?
逐個字符用ord()判斷ascii碼a - z : 97 - 122A - Z : 65 - 90def is_english_char(ch): if ord(ch) not in (97,122) and ord(ch) not in (65,90): return False return True上面函數(shù)可以辨別字符是否為英文字符