复制代码def sin(x): z = _make_complex(x) z = sinh(complex(-z.imag, z.real)) return complex(z.imag, -z.real)