Python Program to Convert Radians into Degrees
In this we are going to learn how to convert radians into degrees. Generally 1 radian=57.2958 degrees. In this program we use round function to round decimal values 3.
Input:
2
Output:
114.592
Explanation:
1 radian = 57.2958 degrees
2 radians = 2*57.2958 = 114.592 degrees
Code:
r=int(input())
print(round(r*57.2958,3))
Note:
Hello Guys, Don't Stop Learning keep Going..............