Hàm phức hợp () trong Python
Thí dụ
Chuyển số 3 và số ảo 5 thành số phức:
x = complex(3, 5)
Định nghĩa và Cách sử dụng
Hàm complex()
trả về một số phức bằng cách chỉ định một số thực và một số ảo.
Cú pháp
complex(real, imaginary)
Giá trị tham số
Parameter | Description |
---|---|
real | Required. A number representing the real part of the complex number. Default 0. The real number can also be a String, like this '3+5j', when this is the case, the second parameter should be omitted. |
imaginary | Optional. A number representing the imaginary part of the complex number. Default 0. |
Các ví dụ khác
Thí dụ
Chuyển một chuỗi thành một số phức:
x = complex('3+5j')