求一个数的双曲正弦。
math.sinh(x)复制
math.sinh(x)
def test(): ret=math.sinh(0.5) print(ret)复制
def test():
ret=math.sinh(0.5)
print(ret)