- Notifications
You must be signed in to change notification settings - Fork 46.7k
/
Copy pathradians.py
29 lines (21 loc) · 592 Bytes
/
radians.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
frommathimportpi
defradians(degree: float) ->float:
"""
Converts the given angle from degrees to radians
https://en.wikipedia.org/wiki/Radian
>>> radians(180)
3.141592653589793
>>> radians(92)
1.6057029118347832
>>> radians(274)
4.782202150464463
>>> radians(109.82)
1.9167205845401725
>>> from math import radians as math_radians
>>> all(abs(radians(i) - math_radians(i)) <= 1e-8 for i in range(-2, 361))
True
"""
returndegree/ (180/pi)
if__name__=="__main__":
fromdoctestimporttestmod
testmod()