Python String isalpha()方法
Python isalpha() 方法返回True,如果字符串中的所有字符都是字母。如果字符不是字母,则返回False。它只返回True或False。
语法
isalpha()
参数
不需要参数。
返回值
返回值要么是True,要么是False。
让我们看一些isalpha()方法的示例,以了解其功能。
示例1
# Python isalpha() method example
# Variable declaration
str = "Javatpoint"
# Calling function
str2 = str.isalpha()
# Displaying result
print(str2)
输出:
True
示例2
# Python isalpha() method example
# Variable declaration
str = "Welcome to the Javatpoint"
# Calling function
str2 = str.isalpha()
# Displaying result
print(str2)
输出:
False
示例3
# Python isalpha() method example
# Variable declaration
str = "Javatpoint"
if str.isalpha() == True:
print("String contains alphabets")
else: print("Stringn contains other chars too.")
输出:
String contains alphabets