我知道 islower
和 isupper
,但是你能检查一下那个字符是不是字母吗?例如:
I know about islower
and isupper
, but can you check whether or not that character is a letter?
For Example:
>>> s = 'abcdefg'
>>> s2 = '123abcd'
>>> s3 = 'abcDEFG'
>>> s[0].islower()
True
>>> s2[0].islower()
False
>>> s3[0].islower()
True
除了.islower()
或者.isupper()
还有什么方法可以直接问是不是字符吗?
Is there any way to just ask if it is a character besides doing .islower()
or .isupper()
?
你可以使用str.isalpha()
.
例如:
s = 'a123b'
for char in s:
print(char, char.isalpha())
输出:
a True
1 False
2 False
3 False
b True
这篇关于如何检查字符串中的字符是否为字母?(Python)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!