Comment utiliser COS dans Python
import math
a = math.pi / 6
b = math.radians(30)
print(math.cos(a))
#Output: 0.8660254037844387
print(math.cos(b))
#Output: 0.8660254037844387
Defiant Dove