Python FAQ 054 isdigit()、isdecimal() 和 isnumeric() 的区别
Python FAQ 054 isdigit()、isdecimal() 和 isnumeric() 的区别问题
Python 中 isdigit()、isdecimal() 和 isnumeric() 的区别 是什么呀?
解答
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 = "Ⅵ" # 罗马数字
num.isdigit() # False
num.isdecimal() # False
num.isnumeric() # True
num = "四" # 汉字
num.isdigit() # False
num.isdecimal() # False
num.isnumeric() # True
static/image/hrline/line7.pngstatic/image/hrline/line7.png
isdigit()
当字符串为 Unicode 数字,byte 数字(单字节),全角数字(双字节)返回 True
当字符串为 汉字数字,罗马数字 返回 False
isdecimal()
当字符串为 Unicode 数字,全角数字(双字节)返回 True
当字符串为 汉字数字,罗马数字 返回 False
当字符串为 byte 数字(单字节)报错
isnumeric()
当字符串为 Unicode 数字,全角数字(双字节),罗马数字,汉字数字 返回 True
当字符串为 byte 数字(单字节)报错
isdigit() 和 isdecimal() 基本相同。
页:
[1]