python中的三角函數(shù)在python的標準庫math中,math已經(jīng)包含在你的標準python包中,不需要單獨安裝。
下面我們就來看一下python中使用三角函數(shù)的方法:
如果要求tan(1)的反函數(shù),可用如下方法:
importmath
math.atan(1)*180/(math.pi)
如果要求sin(1)和cos(1)的反函數(shù),可用如下方法:
importmath
math.asin(1)*180/(math.pi)
math.acos(1)*180/(math.pi)
如果求tan函數(shù)的值
importmath
print(math.tan(math.pi/4))
輸出pi
import
print(math.pi)
以上內(nèi)容為大家介紹了python的三角函數(shù)在哪?希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。