python 字段非数值判断
时间: 2023-11-03 10:04:43 浏览: 74
Python 实现使用空值进行赋值 None
在Python中,可以使用isnumeric()方法来判断一个字符串是否为数值类型。该方法只能判断纯数字字符串,不能判断包含其他字符的字符串。
例如:
```python
num1 = "123"
num2 = "123.45"
str1 = "abc"
print(num1.isnumeric()) # True
print(num2.isnumeric()) # False
print(str1.isnumeric()) # False
```
阅读全文