如何判斷一個字串是數字

anonymity
發布: 2019-05-25 11:35:51
原創
12984 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板