Python中isdigit()
程序员文章站
2022-05-29 13:56:06
...
st.isalnum()
所有字符都是数字或者字母
st.isalpha()
所有字符都是字母
st.isdigit()
所有字符都是数字;
st.islower()
所有字符都是小写;
st.isupper()
所有字符都是大写;
st.istitle()
所有单词都是首字母大写;
st.isspace()
所有字符都是空白字符\t、\n、\r ;
#unicode
>>> tr = "1"
>>> tr.isdigit()
True
>>> tr.isdecimal()
True
>>> tr.isnumeric()
True
#byte
>>> num = b"1"
>>> num.isdigit()
True
>>> num.isdecimal()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'bytes' object has no attribute 'isdecimal'
>>> num.isnumeric()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'bytes' object has no attribute 'isnumeric'
#汉字
>>> num = "一"
>>> num.isdigit()
False
>>> num.isdecimal()
False
>>> num.isnumeric()
True
isdigit()
True: Unicode数字,byte数字(单字节),全角数字(双字节),罗马数字
False: 汉字数字
Error: 无isdecimal()
True: Unicode数字,,全角数字(双字节)
False: 罗马数字,汉字数字
Error: byte数字(单字节)isnumeric()
True: Unicode数字,全角数字(双字节),罗马数字,汉字数字
False: 无
Error: byte数字(单字节)
上一篇: MySQL基础知识点总结代码
下一篇: 字符串中提取数字