Answers for "test if char is alphabet python"

4

python check if character is letter

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

how to check if a string is composed only of alphabets in python

str1 = "hello world. welcome to python examples."

bool = str1.isalpha()

print('str1 contains only alphabets:', bool)
//output will be False
Posted by: Guest on October-11-2020

Code answers related to "test if char is alphabet python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language