#import math
def degrees_to_radians(e):
convert an angle from degrees to radians
Args
e:The angle in degrees(float)
Return:
The angle in radians(float)
return*(math.pi/180)
#Example Usage based on the input formate
try:
e=float(input())
radians=degrees-to-radians(e)
print(radians)
except ValueError:
print("Invalid input.plase enter a flotating-point number.")