30秒学会 Python 片段 · 2019年11月21日

30秒学会 Python 片段 – degrees_to_rads

Converts an angle from degrees to radians.

Use math.pi and the degrees to radians formula to convert the angle from degrees to radians.

代码实现

from math import pi

def degrees_to_rads(deg):
  return (deg * pi) / 180.0

使用样例

degrees_to_rads(180) # 3.141592653589793