Answers for "python get if character is a letter (also acents, ideograpms)"

2

python check if character is letter

>>> 'A'.isalpha()
True
>>> '1'.isalpha()
False
Posted by: Guest on October-19-2020

Code answers related to "python get if character is a letter (also acents, ideograpms)"

Python Answers by Framework

Browse Popular Code Answers by Language