如果字符串中的所有字符都是字母,isalpha() 方法将返回 True。如果不是,则返回 False。
用法:
string.isalpha()
参数:
isalpha()
不带任何参数。
返回:
isalpha()
返回:
- True如果字符串中的所有字符都是字母(可以是小写和大写)。
- False如果至少一个字符不是字母。
示例 1:isalpha() 的工作
name = "Monica"
print(name.isalpha())
# contains whitespace
name = "Monica Geller"
print(name.isalpha())
# contains number
name = "Mo3nicaGell22er"
print(name.isalpha())
输出
True False False
示例 1:isalpha() 的工作
name = "MonicaGeller"
if name.isalpha() == True:
print("All characters are alphabets")
else:
print("All characters are not alphabets.")
输出
All characters are alphabets
也检查这些相关的 String 方法:
相关用法
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String istitle()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String islower()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rpartition()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isalpha()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。