📅  最后修改于: 2023-12-03 15:34:06.487000             🧑  作者: Mango
在Python中,cmath.atan()函数用于返回一个数的反正切值(以弧度为单位)。反正切值是介于-π和π之间的弧度值。
cmath.atan(x)
返回一个数字或者是能够转换为数字的对象的反正切值。
import cmath
a = 2 + 3j
print(cmath.atan(a))
输出结果
(1.4099210495965755+0.23182380450040325j)
import cmath
list1 = [0,1,2,3,4,5]
list2 = [-1,-2,-3,-4,-5]
for i in list1:
print(cmath.atan(i))
for i in list2:
print(cmath.atan(i))
输出结果
0.0
0.7853981633974483
1.1071487177940904
1.2490457723982544
1.3258176636680326
1.373400766945015
-0.7853981633974483
-1.1071487177940904
-1.2490457723982544
-1.3258176636680326
-1.373400766945015