# 导入数学库
import math
# 将不同角度值转换为弧度值
print(math.radians(180))
print(math.radians(100.03))
print(math.radians(-20))