Python字符串|十进制()
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