求一个数的正弦。
math.sin(x)复制
math.sin(x)
def test(): ret=math.sin(0.5235987755983) print(ret)复制
def test():
ret=math.sin(0.5235987755983)
print(ret)