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


Python String isnumeric()用法及代码示例


Python isnumeric() 方法检查字符串的所有字符是否都是数字字符。如果所有字符都为真,则返回 True,否则返回 False。

数字字符包括数字字符和所有具有 Unicode 数值属性的字符。

签名

isnumeric()

参数

不需要参数。

返回

它返回True或False。

让我们看一些 isnumeric() 方法的例子来理解它的函数。

Python 字符串 isnumeric() 方法示例 1

在这里,创建了一个简单的示例来检查字符串是否为数字。

# Python isnumeric() method example
# Variable declaration
str = "12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)

输出:

True

Python 字符串 isnumeric() 方法示例 2

让我们在非数字字符串上测试它,看看它返回 False。

# Python isnumeric() method example
# Variable declaration
str = "javatpoint12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)

输出:

False

Python 字符串 isnumeric() 方法示例 3

看一个 senario 我们可以在哪里以及如何在 python 编程中应用 isnumeric() 方法

# Python isnumeric() method example
str = "123452500" # True
if str.isnumeric() == True:
    print("Numeric")
else:
    print("Not numeric")
str2 = "123-4525-00" # False
if str2.isnumeric() == True:
    print("Numeric")
else:
    print("Not numeric")

输出:

Numeric
Not numeric






相关用法


注:本文由纯净天空筛选整理自 Python String isnumeric() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。