Files
30-seconds-of-code/snippets/degrees_to_rads.md
2020-09-15 16:25:15 +03:00

331 B

title, tags
title tags
degrees_to_rads math,beginner

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