Python字符串内置判断数字的三个函数isdecimal(...)
|      S.isdecimal() -> bool
|
请写出至少5个字符串函数
|      Return True if there are only decimal characters in S,
|      False otherwise.
翻译:如果S中只有⼗进制字符,则返回True,否则为False。
isdigit(...)
|      S.isdigit() -> bool
|
|      Return True if all characters in S are digits
|      and there is at least one character in S, False otherwise.
翻译:如果S中的所有字符都是数字,并且在S中⾄少有⼀个字符,则返回True。
isnumeric(...)
|      S.isnumeric() -> bool
|
|      Return True if there are only numeric characters in S,
|      False otherwise.
翻译:如果S中只有数字字符,则返回True,否则为False。
1 s = '123'
2 print(s.isdigit())
3 print(s.isdecimal())
4 print(s.isnumeric())
结果为:
True
True
True
s = b'123'
print(s.isdigit())
#print(s.isdecimal())
#print(s.isnumeric())
结果为:(只有第⼀个能正常输出,另外两个报属性错误)
True
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-19-9e3f7cdf9524> in <module>()
2 print(s.isdigit())
3 #print(s.isdecimal())
----> 4 print(s.isnumeric())
AttributeError: 'bytes' object has no attribute 'isnumeric'
s = '123.0'
print(s.isdigit())
print(s.isdecimal())
print(s.isnumeric())
False
False
False
s = '三叁'
print(s.isdigit())
print(s.isdecimal())
print(s.isnumeric())
False
False
True
s = 'Ⅲ'
print(s.isdigit())
print(s.isdecimal())
print(s.isnumeric())
False
False
True
总结:
isdigit()
True: Unicode数字,byte数字(单字节),全⾓数字(双字节)
False: 汉字数字,罗马数字,⼩数
Error: ⽆
isdecimal()
True: Unicode数字,全⾓数字(双字节)
False: 罗马数字,汉字数字,⼩数
Error: byte数字(单字节)
isnumeric()
True: Unicode数字,全⾓数字(双字节),罗马数字,汉字数字False: ⼩数
Error: byte数字(单字节)
转载:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。