Answers for "isletter python"

1

python check if character is letter

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

isletter python

str = "abc"
print(str.isalpha())
Posted by: Guest on May-01-2020
5

what does isalpha do in python

The isalpha() method returns True if all the characters are alphabet letters (a-z).
Posted by: Guest on December-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language