import math# 쌍곡 사인 함수def sinh(x): return (math.exp(x) - math.exp(-x)) / 2# 쌍곡 코사인 함수def cosh(x): return (math.exp(x) + math.exp(-x)) / 2# 쌍곡 탄젠트 함수def tanh(x): return sinh(x) / cosh(x)# 테스트x = 2print(f'sinh({x}) = {sinh(x)}')print(f'cosh({x}) = {cosh(x)}')print(f'tanh({x}) = {tanh(x)}')