This article mainly introduces the use of the degrees () method in Python, is the basic knowledge of Python introduction, need friends can refer to the
Degrees () method converts from radians to degrees X
Grammar
The following is the syntax for the degrees () method:
?
Note: This function is not directly accessible, so we need to import the math module, and then we need to call this function with the static object of math.
Parameters
return value
X--This must be a numeric value.
This method returns the degree value of an angle.
Example
The following example shows the use of the degrees () method.
?
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/python Import Math Print degrees (3): ", Math.degrees (3) print" Degrees ( -3): ", Math.degrees ( -3) print" deg Rees (0): ", math.degrees (0) print" degrees (Math.PI): ", Math.degrees (Math.PI) print" degrees (MATH.PI/2): ", Math.degree S (MATH.PI/2) print "degrees (MATH.PI/4):", Math.degrees (MATH.PI/4) |
When we run the above program, it produces the following results:
?
1 2 3 4 5 6 |
Degrees (3): 171.887338539 degrees ( -3): -171.887338539 degrees (0): 0.0 degrees (MATH.PI): 180.0 degrees (MATH.PI/2): 90. 0 degrees (MATH.PI/4): 45.0 |