求弧度 x 的角度值。
math.degrees(x)复制
math.degrees(x)
def test(): ret=math.degrees(3.14 / 2) print(ret)复制
def test():
ret=math.degrees(3.14 / 2)
print(ret)