# 导入数学库
import math
# 返回不同数值的正弦值
print(math.sin(0.00))
print(math.sin(-1.23))
print(math.sin(10))
print(math.sin(math.pi))
print(math.sin(math.pi/2))