trigonometric math problem

I was wondering if anyone of you guys know how to calculate the left angle in a triangle knowing the horizontal and vertical length and height of the triangle
and then how to convert the formula to python

In my math book it says that to calculate the angle you have to divide the height with the lenght and then INV the answer then press tan on the calculator to get the angle

Can python use this INV button and what does it stand for and do

Why do I need this well so I can animate 180 degress rotation animation of the arm from pointing upforward to downforward knowing the angle of the enemy and then rotate the arms to that precise angle


import math
radians = math.atan(float(height)/float(length))
degrees = radians*180./math.pi

That will get you the angle in radians and degrees. If you only need radians you don’t need the last line.

tip: all inverse functions are with an ‘a’ before: atan, asin, acos

thank you so much guys