Python Math: Convert radian to degree
Write a Python program to convert radians to degrees.
Note: The radian is the standard unit of angular measure, used in many areas of mathematics. An angle's measurement in radians is numerically equal to the length of a corresponding arc of a unit circle; one radian is just under 57.3 degrees (when the arc length is equal to the radius).
Sample Solution:
Python Code:
pi=22/7
radian = float(input("Input radians: "))
degree = radian*(180/pi)
print(degree)
Sample Output:
Input radians: 10 572.7272727272727
Pictorial Presentation:
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to convert degree to radian.
Next: Write a Python program to calculate the area of a trapezoid.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics