Python math.atan() 方法
例如:
返回不同数的反正切:
#Import math Library import math #返回不同数字的反正切 print (math.atan(0.39)) print (math.atan(67)) print (math.atan(-21))
1、定义和用法
math.atan()
方法返回数字(x)的反正切值,作为介于-PI/2和PI/2弧度之间的数值。
反正切也定义为x的反正切函数,其中x是要计算的反正切值。
2、调用语法
math.atan(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 正数或负数。 如果x不是数字, 则返回错误TypeError |
4、方法说明
返回值: | 从-PI/2到PI/2的 |
Python Version: | 1.6.1 |