Answers for "python inverse cosine in degrees"

2

cos in python in degrees

math.cos(math.radians(1))
# math.cos takes radians
# math.radians converts radians to degrees
Posted by: Guest on September-12-2020
0

how to use sin inverse and cos inverse in python

 
# import math library
import math
print(math.acos(-0.2))
print(math.acos(0))
print(math.acos(0.2))
Posted by: Guest on May-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language