C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Python String isalpha() MethodPython isalpha() method returns true if all characters in the string are alphabetic. It returns False if the characters are not alphabetic. It returns either True or False. Signatureisalpha() ParametersNo parameter is required. ReturnIt returns either True or False. Let's see some examples of isalpha() method to understand it's functionalities. Python String isalpha() Method Example 1# Python isalpha() method example # Variable declaration str = "TheDeveloperBlog" # Calling function str2 = str.isalpha() # Displaying result print(str2) Output: True Python String isalpha() Method Example 2# Python isalpha() method example # Variable declaration str = "Welcome to the TheDeveloperBlog" # Calling function str2 = str.isalpha() # Displaying result print(str2) Output: False Python String isalpha() Method Example 3# Python isalpha() method example # Variable declaration str = "TheDeveloperBlog" if str.isalpha() == True: print("String contains alphabets") else: print("Stringn contains other chars too.") Output: String contains alphabets
Next TopicPython Strings
|