Advertisement
HristoBaychev

Radians to Degrees

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