What is the isLetter() equivalent in Python

1 Answer

0 votes
print('a'.isalpha())
print('Y'.isalpha())

print('2'.isalpha())

print(':'.isalpha())



'''
run:

True
True
False
False

'''

 



answered Aug 23, 2022 by avibootz

Related questions

1 answer 149 views
149 views asked Aug 7, 2021 by avibootz
1 answer 129 views
1 answer 92 views
4 answers 283 views
6 answers 337 views
1 answer 194 views
1 answer 156 views
...