Skip to content
This repository was archived by the owner on May 7, 2023. It is now read-only.

Files

Latest commit

 

History

History
22 lines (17 loc) · 394 Bytes

degrees-to-rads.md

File metadata and controls

22 lines (17 loc) · 394 Bytes
title type tags cover dateModified
Degrees to radians
snippet
math
digital-nomad-6
2020-11-02 19:27:53 +0200

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.1416