formatted_float = "{:.2f}".format(a_float)
float = 45,0748
newFloat = round(float, 2)
# return float with 3 decimals, use round.
# python formula to convert radians to degrees with formula
value = int(input("Provide radian value: "))
rad_angle = round((value * 180) / 3.14159265, 3)
print("The radian value to degrees is: ", rad_angle)