math.pi
and the degrees to radians formula to convert the angle from degrees to radians.from math import pi def degrees_to_rads(deg): return (deg * pi) / 180.0
degrees_to_rads(180) # ~3.1416
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️