Python中字串處理的方法函數:
str.isnumeric(): True if 只包含數字;otherwise False。注意:此函數只能用於unicode string
str.isdigit(): True if 只包含數字;otherwise False。
str.isalpha():True if 只包含字母;otherwise False。
str.isalnum():True if 只包含字母或數字;otherwise False。
範例字串:
str_1 = "123"
str_2 = "Abc"
str_3 = "123Abc"
代碼處理過程:
#用isdigit函数判断是否数字 print(str_1.isdigit()) Ture print(str_2.isdigit()) False print(str_3.isdigit()) False #用isalpha判断是否字母 print(str_1.isalpha()) False print(str_2.isalpha()) Ture print(str_3.isalpha()) False #isalnum判断是否数字和字母的组合 print(str_1.isalnum()) Ture print(str_2.isalnum()) Ture print(str_1.isalnum()) Ture
注意:如果字串中含有除了字母或數字之外的字符,例如空格,也會回傳False
嚴格解析:有除了數字或字母外的符號(空格,分號,etc.)都會False
isalnum()必須是數字和字母的混合
isalpha()不區分大小寫
以上是如何判斷一個字串是數字的詳細內容。更多資訊請關注PHP中文網其他相關文章!