求角度 x 的弧度值。
math.radians(x)复制
math.radians(x)
def test(): ret=math.radians(90) print(ret)复制
def test():
ret=math.radians(90)
print(ret)