Answers for "python function to check alphabets"

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

Code answers related to "python function to check alphabets"

Python Answers by Framework

Browse Popular Code Answers by Language