Python中判斷字符串是否是漢字

isalpha()是Python中用來判斷是否爲字母的函數,可是當字符爲漢字時函數依然返回YES,在開發中可能遇到判斷一個字符是不是漢字的問題,咱們能夠根據ASCII判斷字符是否爲漢字函數 def isChineseWord(string): if string.isalpha(): if ord(string) in range(65,91) or ord(string)
相關文章
相關標籤/搜索