Python cmath.polar() 方法
实例
将复数转换为极坐标形式:
#import cmath for complex number operations
import cmath
#find
the polar coordinates of complex number
print (cmath.polar(2 + 3j))
print (cmath.polar(1 + 5j))
亲自试一试 »
定义和用法
cmath.polar()
方法将复数转换为极坐标。 它返回一个模数和相位元组。
在极坐标中,复数由模r和相位角phi定义。
语法
cmath.polar(x)
参数值
参数 | 描述 |
---|---|
x | 必需。查找极坐标的数字 |
技术细节
返回值: | 一个tuple 元组值,代表极坐标 |
---|---|
Python 版本: | 2.6 |