veronikaaa86

02. Radians to Degrees

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