Contact: aviboots(AT)netvision.net.il
40,039 questions
52,004 answers
573 users
import math print(math.degrees(1)) print(math.degrees(-1)) print(math.degrees(0)) print(math.degrees(math.pi)) print(math.degrees(math.pi / 2)) print(math.degrees(math.pi / 4)) ''' run: 57.29577951308232 -57.29577951308232 0.0 180.0 90.0 45.0 '''