Python isdecimal() 方法检查字符串中的所有字符是否都是十进制的。十进制字符是那些以 10 为底的字符。
此方法返回布尔值 true 或 false。
签名
isdecimal()
参数
不需要参数。
返回
它返回True或False。
让我们看一些 isdecimal() 方法的例子来理解它的函数。
Python 字符串 isdecimal() 方法示例 1
isdecimal() 方法检查字符串是否包含十进制值的简单示例。
# Python isdecimal() method example
# Variable declaration
str = "Javatpoint"
# Calling function
str2 = str.isdecimal()
# Displaying result
print(str2)
输出:
False
Python 字符串 isdecimal() 方法示例 2
让我们尝试检查浮点数值并查看结果。如果字符串不是十进制,它将返回 False。
# Python isdecimal() method example
# Variable declaration
str = "123" # True
str3 = "2.50" # False
# Calling function
str2 = str.isdecimal()
str4 = str3.isdecimal()
# Displaying result
print(str2)
print(str4)
输出:
True False
Python 字符串 isdecimal() 方法示例 3
在这里,我们也在检查特殊字符。
# Python isdecimal() method example
# Variable declaration
str = "123" # True
str3 = "@#$" # False
# Calling function
str2 = str.isdecimal()
str4 = str3.isdecimal()
# Displaying result
print(str2)
print(str4)
输出:
True False
相关用法
- Python String isdigit()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String join()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isdecimal() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。