python 中角度与弧度间的转换

角度转为弧度

import math
math.radians(x)

弧度转为角度

import math
math.degrees(x)

你可能感兴趣的:(python)