python 判断数字
时间: 2023-11-08 19:10:03 浏览: 149
可以使用 isinstance() 函数判断一个变量是否为数字类型。
例如,判断变量 x 是否为 int 类型:
```
x = 123
if isinstance(x, int):
print("x is an integer")
else:
print("x is not an integer")
```
输出结果为:
```
x is an integer
```
同理,可以使用 float、complex 等类型来判断。例如:
```
x = 3.14
if isinstance(x, float):
print("x is a float")
else:
print("x is not a float")
```
输出结果为:
```
x is a float
```
阅读全文