How to use atan2() function to get the arc tangent value in radians of y/x in Python

1 Answer

0 votes
import math

print(math.atan2(1, 1))
print(math.atan2(1, -1))
print(math.atan2(-1, 1))
print(math.atan2(-1, -1))


'''
run:

0.7853981633974483
2.356194490192345
-0.7853981633974483
-2.356194490192345

'''

 



answered Oct 3, 2017 by avibootz
...