python復(fù)數(shù)的虛部如何表示

小億
245
2023-10-11 16:07:02

Python中的復(fù)數(shù)虛部可以通過使用后綴`j`或`J`來表示。

以下是一些示例:

```python
a = 3 + 2j
b = 1j
c = 1 + 0j

print(a.imag)  # 輸出:2.0
print(b.imag)  # 輸出:1.0
print(c.imag)  # 輸出:0.0
```

在上述示例中,變量`a`表示復(fù)數(shù)3+2j,其中虛部為2。變量`b`表示純虛數(shù)1j,其中虛部為1。變量`c`表示實(shí)數(shù)1,虛部為0。

你還可以使用`complex()`函數(shù)來創(chuàng)建復(fù)數(shù),例如:

```python
d = complex(2, -5)  # 創(chuàng)建復(fù)數(shù)2-5j

print(d.imag)  # 輸出:-5.0
```

0