Python complex() 函数
定义和用法
The complex()
函数通过指定实数和虚数来返回一个复数。
语法
complex(real, imaginary)
参数值
参数 | 描述 |
---|---|
real | 必需。一个表示复数实部的数字。默认值为 0。实数也可以是字符串,例如 '3+5j',在这种情况下,应省略第二个参数。 |
imaginary | 可选。一个表示复数虚部的数字。默认值为 0。 |
The complex()
函数通过指定实数和虚数来返回一个复数。
complex(real, imaginary)
参数 | 描述 |
---|---|
real | 必需。一个表示复数实部的数字。默认值为 0。实数也可以是字符串,例如 '3+5j',在这种情况下,应省略第二个参数。 |
imaginary | 可选。一个表示复数虚部的数字。默认值为 0。 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]