Python math.tan() 方法
例如:
查找不同数字(角度)的切线:
# Import math Library
import math
# 返回不同数字的正切值
print (math.tan(90))
print (math.tan(-90))
print (math.tan(45))
print (math.tan(60))
1、定义和用法
math.tan()
方法返回数字的切线。
2、调用语法
math.tan(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 查找正切的数字。 如果该值不是数字,则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 1.4 |