Python isalnum() 方法檢查字符串的所有字符是否為字母數字。字母或數字的字符稱為字母數字字符。它不允許特殊字符甚至空格。
簽名
isalnum()
參數
不需要參數。
返回
它返回True或False。
讓我們看一些 isalnum() 方法的例子來理解它的函數。
Python 字符串 isalnum() 方法示例 1
# Python isalnum() function example
# Variable declaration
str = "Welcome"
# Calling function
str2 = str.isalnum()
# Displaying result
print(str2)
輸出:
True
Python 字符串 isalnum() 方法示例 2
如果字符串中的任意位置有空格,則返回 False。請參閱下麵的示例。
# Python isalnum() function example
# Variable declaration
str = "Welcome"
# Calling function
str2 = str.isalnum()
# Displaying result
print(str2)
輸出:
False
Python 字符串 isalnum() 方法示例 3
# Python isalnum() function example
# Variable declaration
str = "Welcome123" # True
str3 = "Welcome 123" # False
# Calling function
str2 = str.isalnum()
str4 = str3.isalnum()
# Displaying result
print(str2)
print(str4)
輸出:
True False
Python 字符串 isalnum() 方法示例 4
即使字符串充滿數字,它也返回 True 。請參閱示例。
# Python isalnum() function example
# Variable declaration
str = "123456"
# Calling function
str2 = str.isalnum()
# Displaying result
print(str2)
輸出:
True
注意:如果 isalpha()、isdecimal()、isdigit() 或 isnumeric() 中的任何一個返回 True,則此方法返回 True。
相關用法
- Python String isalpha()用法及代碼示例
- 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 isalnum() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。