当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python string isdecimal()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自Striver大神的英文原创作品 Python string | isdecimal()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。