Describe
The radians () method converts the angle to radians.
Grammar
The following is the syntax for the radians () method:
Import Mathmath.radians (x)
Note:radians () is not directly accessible, you need to import the math module, and then call the method through the math static object.
Parameters
return value
Returns the Radian value of an angle.
Instance
The following shows an example of using the radians () method:
#!/usr/bin/python3import Mathprint ("radians (3):", Math.radians (3)) print ("Radians ( -3):", Math.radians (-3 ) Print ("radians (0):", Math.radians (0)) print ("Radians (Math.PI):", Math.radians (Math.PI)) print ("radians (MATH.PI/2): ", Math.radians (MATH.PI/2)) print (" Radians (MATH.PI/4): ", Math.radians (MATH.PI/4))
When the above instance is run, the output is:
Radians (3): 0.05235987755982989radians ( -3): -0.05235987755982989radians (0): 0.0radians (Math.PI): 0.05483113556160755radians (MATH.PI/2): 0.027415567780803774radians (MATH.PI/4): 0.013707783890401887
Python radians () function