求一个数值的反正切,返回值介于 -PI/2 与 PI/2 之间。
math.atan(x)复制
math.atan(x)
def test(): ret=math.atan(1) print(ret)复制
def test():
ret=math.atan(1)
print(ret)