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!

Andrew, this is great. Amazing description. This is quality stuff.
Please check the indentation, seems odd. Should be 4 spaces (so it doesn't break the learn platform). Also, can you split that test into 2 different test? Better to have smaller tests for students.