如果字符串中的所有字符都是字母数字(字母或数字),isalnum() 方法将返回 True。如果不是,则返回 False。
用法:
string.isalnum()
参数:
isalnum()
不带任何参数。
返回:
isalnum()
返回:
- True如果字符串中的所有字符都是字母数字
- False如果至少一个字符不是字母数字
示例 1:isalnum() 的工作
name = "M234onica"
print(name.isalnum())
# contains whitespace
name = "M3onica Gell22er "
print(name.isalnum())
name = "Mo3nicaGell22er"
print(name.isalnum())
name = "133"
print(name.isalnum())
输出
True False True True
示例 1:isalnum() 的工作
name = "M0n1caG3ll3r"
if name.isalnum() == True:
print("All characters of string (name) are alphanumeric.")
else:
print("All characters are not alphanumeric.")
输出
All characters of string (name) are alphanumeric.
也检查这些相关的 String 方法:
相关用法
- Python String isalpha()用法及代码示例
- 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 isalnum()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。