isdecimal()-這是Python中的一個函數,如果字符串中的所有字符均為十進製,則返回true。如果所有字符都不是十進製,則返回false。
用法:
string_name.isdecimal()
Here string_name is the string whose characters are to be checked
參數:此方法不帶任何參數。
返回值:
True - all characters are decimal
False - one or more then one character is not decimal.
下麵是isdecimal()方法的Python3實現:
# Python3 program to demonstrate the use
# of isdecimal()
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
相關用法
- Numpy string isdecimal()用法及代碼示例
- Python Pandas Series.str.isdecimal()用法及代碼示例
- Python string min()用法及代碼示例
- Python string max()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 Python string | isdecimal()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。