如何检查字符串中的字符是否为字母?(Python)

2022-01-20 00:00:00 python string find

问题描述

我知道 islowerisupper,但是你能检查一下那个字符是不是字母吗?例如:

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

相关文章