#弧度换成角度
print(math.degrees(math.pi))
#把角度换成弧度
print(math.radians(90))

输出结果如下:

180.0
1.5707963267948966

你也可能喜欢

发表评论