Run »
×
Change Orientation
# Import math Library import math # Return the arc tangent of y/x in radians print(math.atan2(8, 5)) print(math.atan2(20, 10)) print(math.atan2(34, -7)) print(math.atan2(-340, -120))
1.0121970114513341
1.1071487177940904
1.7738415440483617
-1.9100889412489412
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit