Python字符串isdecimal()函數如果字符串中的所有字符都是十進製,則返回 true,否則返回 False。在本文中,我們將進一步探討isdecimal()
方法,了解其函數,並探索其實際應用Python編程。
Python 字符串 isdecimal() 語法
用法:string_name.isdecimal()、string_name為要檢查字符的字符串
Parameters: 該方法不帶任何參數。
Return: 布爾值。 True - 所有字符均為十進製,False - 一個或多個字符不是十進製。
Python 示例中的字符串isdecimal()
讓我們探討一些示例來了解如何isdecimal()
方法的用法原理:
Python3
print("100".isdecimal())
輸出
True
包含數字和數字字符的字符串
在Python中,我們可以使用isdecimal()方法檢查字符串是否包含數字或數字字符。這是演示Python字符串decimal()方法使用的程序。
Python3
s = "12345"
print(s.isdecimal())
# contains alphabets
s = "12geeks34"
print(s.isdecimal())
# contains numbers and spaces
s = "12/34"
print(s.isdecimal())
輸出
True
False
False
使用 Isdecimal() 將數字字符串轉換為整數
在Python中,我們可以使用isdecimal()方法將字符串轉換為整數。這是演示Python字符串decimal()方法使用的程序。
Python3
def convert_int(num_str):
if num_str.isdecimal():
return int(num_str)
else:
return None
print(convert_int("555"))
print(convert_int("11.11"))
輸出
555
None
isdigit()、isnumeric() 和 isdecimal() 之間的區別
在 Python 中,String isdigit(),String isnumeric(), 和isdecimal()
方法用於確定字符串是否僅包含數字字符。盡管它們可能看起來相似,但每種方法都有其獨特的特征和目的。讓我們深入探討這些方法之間的關係:
isdigit() 和 isdecimal() 之間的區別
In Python, isdigit()
是一種方法str
類別和返回True
如果字符串中的所有字符都是數字(0 到 9)。在這裏,Python String isdecimal() 返回 False,因為 “expr” 中並非所有字符都是十進製。
Python3
expr = "4²"
print("expr isdigit()?", expr.isdigit())
print("expr isdecimal()?", expr.isdecimal())
輸出
expr isdigit()? True
expr isdecimal()? False
isnumeric() 和 isdecimal() 之間的區別
In Python, isnumeric()
也是一種方法str
類,它返回True
如果字符串中的所有字符都是數字。此處,Python String isdecimal() 返回 False,因為 “expr” 中並非所有字符都是十進製。
Python3
expr = "⅔"
print("expr isnumeric()?", expr.isnumeric())
print("expr isdecimal()?", expr.isdecimal())
輸出
expr isnumeric()? True
expr isdecimal()? False
相關用法
- Python string center()用法及代碼示例
- Python string capitalize()用法及代碼示例
- Python string.octdigits用法及代碼示例
- Python string.punctuation用法及代碼示例
- Python string.whitespace用法及代碼示例
- Python string printable()用法及代碼示例
- Python string capwords()用法及代碼示例
- Python string lstrip()用法及代碼示例
- Python string isupper()用法及代碼示例
- Python string islower()用法及代碼示例
- Python string rpartition()用法及代碼示例
- Python string rsplit()用法及代碼示例
- Python string splitlines()用法及代碼示例
- Python string strip()用法及代碼示例
- Python string rfind()用法及代碼示例
- Python string isidentifier()用法及代碼示例
- Python string replace()用法及代碼示例
- Python string zfill()用法及代碼示例
- Python string split()用法及代碼示例
- Python string min()用法及代碼示例
- Python string max()用法及代碼示例
- Python string count()用法及代碼示例
- Python string istitle()用法及代碼示例
- Python string find()用法及代碼示例
- Python string swapcase()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 Python string isdecimal() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。