cos sin in python code example
Example 1: cos in python in degrees
math.cos(math.radians(1))
# math.cos takes radians
# math.radians converts radians to degrees
Example 2: how to import sin and cos in python
#A demo of sin() function
from math import sin
from math import cos