在python中使用complex()函數(shù)表示函數(shù)中的復(fù)數(shù),具體方法如下:
python中復(fù)數(shù)是由一個實數(shù)和一個虛數(shù)構(gòu)成的,表示為:x+yj,一個復(fù)數(shù)時一對有序浮點數(shù) (x,y),其中 x 是實數(shù)部分,y 是虛數(shù)部分。
complex:complex()函數(shù)的作用是用于創(chuàng)建一個值為 real + imag * j 的復(fù)數(shù)或者轉(zhuǎn)化一個字符串或數(shù)為復(fù)數(shù)。
complex()函數(shù)語法:
class complex([real[, imag]])
complex()函數(shù)使用方法:
>>>complex(1, 2)
(1 + 2j)
>>> complex(1) # 數(shù)字
(1 + 0j)
>>> complex("1") # 當(dāng)做字符串處理
(1 + 0j)
>>> complex("1+2j")
(1 + 2j)