小码哥的IT人生

Python 字符串 isnumeric() 方法

Python基础 2022-06-06 15:21:11小码哥的IT人生shichen

Python 字符串 isnumeric() 方法

实例

检查文本中的所有字符是否都是数字:

txt = "565543"
x = txt.isnumeric()
print(x)

完整实例:

txt = "20491001"
x = txt.isnumeric()
print(x)

定义和用法

如果所有字符均为数字(0-9),则 isumeric() 方法返回 True,否则返回 False。

指数(比如 ² 和 ¾)也被视为数字值。

语法

string.isnumeric()

参数值

无参数.

更多实例

示例代码:

检查字符是否为数字:

a = "\u0030" #unicode for 0
b = "\u00B2" #unicode for ²
c = "10km2"
print(a.isnumeric())
print(b.isnumeric())
print(c.isnumeric())

完整实例:

a = "\u0030" #unicode for 0
b = "\u00B2" #unicode for ²
c = "10km2"
print(a.isnumeric())
print(b.isnumeric())
print(c.isnumeric())

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024