Answers for "how to tell if a string is composed of letters and numbers python"

2

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 "how to tell if a string is composed of letters and numbers python"

Python Answers by Framework

Browse Popular Code Answers by Language