Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Първо решение:
- import math
- radians = float(input())
- degrees = radians * 180 / math.pi
- print(degrees)
- Второ решение:
- from math import pi
- radians = float(input())
- degrees = radians * 180 / pi
- print(degrees)
- Тарикатско решение:)
- from math import pi
- print(float(input()) * 180 / pi)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement