Python 判断数值类型
时间: 2023-05-30 18:06:46 浏览: 156
python查看数据类型的方法
Python 中可以使用 isinstance() 函数来判断数值类型。
示例:
```python
# 判断整数类型
a = 10
print(isinstance(a, int)) # 输出 True
# 判断浮点数类型
b = 3.14
print(isinstance(b, float)) # 输出 True
# 判断复数类型
c = 3 + 4j
print(isinstance(c, complex)) # 输出 True
```
除了使用 isinstance() 函数,也可以直接使用 type() 函数来获取对象的类型。
示例:
```python
# 判断整数类型
a = 10
print(type(a) == int) # 输出 True
# 判断浮点数类型
b = 3.14
print(type(b) == float) # 输出 True
# 判断复数类型
c = 3 + 4j
print(type(c) == complex) # 输出 True
```
阅读全文