Assuming we have the length of the right angled triangle's hypotenuse AND an angle of its other corners (not the 90 degree), write an equation that will give us the distance of the opposing side of the given angle.
The equation that represents this scenerio is:
side_opposite_given_angle = sin(given_angle) * hypotenuse_len
Create a function to reflect this equation and return the side_opposite_given_angle value
Note: You may need to import a certain mathematical library to access 'sin'
Note2: In python, sin() expects the value passed to it to be in radians
Could this mathematical library also have the power to convert value to radians?
Note3: Round the overall value by 2 digits!
Find the length of the side opposite to the given angle and restore peace to this triangle!

4 spaces is the gold standard going forward captain salute