📅  最后修改于: 2020-10-30 06:22:27             🧑  作者: Mango
Python的isnumeric()方法检查字符串的所有字符是否都是数字字符。如果所有字符都为True,则返回True,否则返回False。
数字字符包括数字字符,并且有统一的数值属性的所有字符。
isnumeric()
不需要任何参数。
它返回True或False。
让我们看一下isnumeric()方法的一些例子,以了解它的功能。
在这里,创建了一个简单的示例来检查字符串是否为数字。
# Python isnumeric() method example
# Variable declaration
str = "12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)
输出:
True
让我们在非数字字符串上对其进行测试,看看它是否返回False。
# Python isnumeric() method example
# Variable declaration
str = "javatpoint12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)
输出:
False
查看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