I know what us islower and isupper, but how can we check whether a character in a string is a letter?Example:
>>> s = 'abcdefg'
>>> s2 = '123abcd'
>>> s3 = 'abcDEFG'
>>> s[0].islower()
True
>>> s2[0].islower()
False
>>> s3[0].islower()
True
Is there any way to check without using .islower() or .isupper()?