python判断整数浮点数复数
时间: 2023-07-07 14:24:06 浏览: 158
计算浮点数
Python中通过type()函数可以判断一个变量的类型。例如,可以通过以下代码判断一个变量的类型:
```python
a = 1 # 整数
b = 1.0 # 浮点数
c = 1 + 2j # 复数
print(type(a)) # <class 'int'>
print(type(b)) # <class 'float'>
print(type(c)) # <class 'complex'>
```
上述代码中,通过type()函数分别判断了变量a、b、c的类型,输出结果分别为int、float、complex,即整数、浮点数、复数。
阅读全文