Files
30-seconds-of-code/snippets/degrees_to_rads.md
Isabelle Viktoria Maciohsek 0ab4b3dbc5 Update snippet descriptions
2020-11-02 19:27:53 +02:00

20 lines
321 B
Markdown

---
title: degrees_to_rads
tags: 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.
```py
from math import pi
def degrees_to_rads(deg):
return (deg * pi) / 180.0
```
```py
degrees_to_rads(180) # ~3.1416
```