如何在python中表达三角函数,比如sin(x),tan(x),
问题描述:
如何在python中表达三角函数,比如sin(x),tan(x),
答
import math
x=2
math.sin(x)
math.tan(x)