如果字符串中的所有字符都是字母,则 Python isalpha() 方法返回 true。如果字符不是字母,则返回 False。它返回 True 或 False。
签名
isalpha()
参数
不需要参数。
返回
它返回True或False。
让我们看一些 isalpha() 方法的例子来理解它的函数。
Python 字符串 isalpha() 方法示例 1
# Python isalpha() method example
# Variable declaration
str = "Javatpoint"
# Calling function
str2 = str.isalpha()
# Displaying result
print(str2)
输出:
True
Python 字符串 isalpha() 方法示例 2
# Python isalpha() method example
# Variable declaration
str = "Welcome to the Javatpoint"
# Calling function
str2 = str.isalpha()
# Displaying result
print(str2)
输出:
False
Python 字符串 isalpha() 方法示例 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
相关用法
- Python String isalnum()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String join()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isalpha() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。