Python+.imag
时间: 2023-12-14 20:33:23 浏览: 159
python note.doc
Python中的.imag是一个属性,用于返回一个复数的虚部。下面是一个例子:
```python
import numpy as np
# 创建一个复数
z = 3 + 4j
# 输出复数的虚部
print(z.imag) # 输出:4.0
# 使用numpy创建一个复数数组
a = np.array([1+2j, 3+4j, 5+6j])
# 输出数组中每个复数的虚部
print(a.imag) # 输出:[2. 4. 6.]
```
阅读全文