Answers for "python method to check if all character are alphabetic"

0

checking if a string is in alphabetical order in python

def isInAlphabeticalOrder(word):
    for i in range(len(word) - 1):
        if word[i] > word[i + 1]:
            return False
    return True
Posted by: Guest on September-04-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 "python method to check if all character are alphabetic"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language