如果字符串中的所有字符都是字母數字(字母或數字),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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。