Python3 math.tan() 方法 -求正切值

2023-04-27 11:36 更新

Python math 模塊  math 模塊


描述

Python math.tan(x) 返回 x 弧度的正切值。


語法

math.tan() 方法語法如下:

math.tan(x)

參數(shù)說明:

  • x -- 必需,數(shù)字。如果 x 不是數(shù)字,則返回 TypeError。

返回值

返回一個浮點數(shù),表示 x 的正切值。


實例

以下實例返回數(shù)字的正切值:

# 導入 math 包
import math

# 輸出正切值
print (math.tan(90))
print (math.tan(-90))
print (math.tan(45))
print (math.tan(60))

輸出結果:

-1.995200412208242
1.995200412208242
1.6197751905438615
0.3200403893795629

Python math 模塊  math 模塊


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號