The radians () method converts the angle to the radian angle x.
Grammar
The following is the syntax for the radians () method:
Radians (x)
Note: This function is not directly accessible, so we need to import the math module and then call this function with the static object of math.
Parameters
- X--This must be a numeric value.
return value
This method returns the Radian value of an angle.
Example
The following example shows the use of the radians () method.
#!/usr/bin/pythonimport 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 (Mat H.PI/2) print "radians (MATH.PI/4):", Math.radians (MATH.PI/4)
When we run the above program, it produces the following results:
Radians (3): 0.0523598775598radians ( -3): -0.0523598775598radians (0): 0.0radians (Math.PI): 0.0548311355616radians ( MATH.PI/2): 0.0274155677808radians (MATH.PI/4): 0.0137077838904