Python 判断字符串是否为大写及延伸

以下方法仅判断字符,数字和符号不影响结果

isupper() 判断是否都为大写

1
2
3
4
>>> '1a!'.isupper()
False
>>> '1A!'.isupper()
True

islower() 判断是否都为小写

1
2
3
4
>>> '1As!'.islower()
False
>>> '1s!'.islower()
True

istitle() 判断所有的单词首字符都是大写

1
2
3
4
>>> 'This Is Upper'.istitle()
True
>>> 'This Is upper1'.istitle()
False

isspace() 判断所有的字符都是空格

1
2
3
4
>>> 'This Is upper1'.isspace()
False
>>> ' '.isspace()
True

isalnum() 判断所有的字符都是数字或字母

1
2
3
4
5
6
7
8
>>> '1a!'.isalnum()
False
>>> '1a'.isalnum()
True
>>> 'aa'.isalnum()
True
>>> '11'.isalnum()
True

isalpha() 判断所有的字符都是字母

1
2
3
4
5
6
>>> '11'.isalpha()
False
>>> '1a'.isalpha()
False
>>> 'aa'.isalpha()
True

isdigit() 判断所有的字符都是数字

1
2
3
4
5
6
>>> 'aa'.isdigit()
False
>>> '11'.isdigit()
True
>>> '1a'.isdigit()
False

还有两个类似的方法 isdecimal()isnumeric()

03-16 16:32