how to use cos and sin in python code example
Example: cos in python
from math import cos,pi
a = pi
b = cos(a)
c = 180
d = cos(c)
print(b,d) # returns -1,-0.59846
# cos function works with radians
from math import cos,pi
a = pi
b = cos(a)
c = 180
d = cos(c)
print(b,d) # returns -1,-0.59846
# cos function works with radians