Python String isnumeric() 方法
定义和用法
如果所有字符均为数字(0-9),则 isnumeric()
方法返回 True,否则返回 False。
指数(比如 ² 和 ¾ )也被视为数字值。
语法
string.isnumeric()
参数值
无参数.
更多实例
实例
检查字符是否为数字:
a = "\u0030" #unicode for 0
b = "\u00B2" #unicode for ²
c = "10km2"
print(a.isnumeric())
print(b.isnumeric())
print(c.isnumeric())
亲自试一试 »