Advertisement
ydpetkov

Radians_to_Degrees

Jul 8th, 2022
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. import math
  2.  
  3. radians = float(input())
  4. degrees = radians * 180 / math.pi
  5. print(degrees)
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement