Start | mathdegrees
 

math.degrees(x)



Omvandlar från radianer till grader.
import math r = 3.14159 g = math.degrees(r) print(g)
import math r = 3.1415954 g = math.degrees(r) print(g)
import math r = math.pi g = math.degrees(r) print(g)
14.103889465332 ms