str.isdigit、str.isdecimal 和 str.isnumeric 區別

isdigit()

True: Unicode數字,byte數字(單字節),全角數字(雙字節)

False: 漢字數字,羅馬數字,小數

Error: 無

isdecimal()

True: Unicode數字,,全角數字(雙字節)

False: 羅馬數字,漢字數字,小數

Error: byte數字(單字節)

isnumeric()

True: Unicode 數字,全角數字(雙字節),漢字數字

False: 小數,羅馬數字

Error: byte數字(單字節)

num = "1"  #unicode
num.isdigit()   # True
num.isdecimal() # True
num.isnumeric() # True

num = "1" # 全角
num.isdigit()   # True
num.isdecimal() # True
num.isnumeric() # True

num = b"1" # byte
num.isdigit()   # True
num.isdecimal() # AttributeError 'bytes' object has no attribute 'isdecimal'
num.isnumeric() # AttributeError 'bytes' object has no attribute 'isnumeric'

num = "IV" # 羅馬數字
num.isdigit()   # False
num.isdecimal() # False
num.isnumeric() # False

num = "四" # 漢字
num.isdigit()   # False
num.isdecimal() # False
num.isnumeric() # True

 

發佈了76 篇原創文章 · 獲贊 5 · 訪問量 9239
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章