Answers for "check if string is alphabetic python"

2

is alphabet python

test = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
test.isalpha()
# This will return True if all chars in string are from a-z or A-Z and Flase in all other cases
Posted by: Guest on May-23-2021
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 "check if string is alphabetic python"

Python Answers by Framework

Browse Popular Code Answers by Language