Python 字符串 isnumeric()方法
Python isnumeric() 方法检查字符串的所有字符是否都是数字字符。如果所有字符都是数字字符,则返回True;否则返回False。
数字字符包括数字字符和具有Unicode数值属性的所有字符。
语法
isnumeric()
参数
不需要参数。
返回值
返回值可以是True或False。
让我们看一些isnumeric()方法的示例来理解它的功能。
示例1
这里创建了一个简单的例子来检查字符串是否为数字。
# Python isnumeric() method example
# Variable declaration
str = "12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)
输出:
True
示例2
让我们在非数字字符串上进行测试,看它是否返回False。
# Python isnumeric() method example
# Variable declaration
str = "javatpoint12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)
输出:
False
示例3
查看在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