📅  最后修改于: 2023-12-03 14:39:19.611000             🧑  作者: Mango
这是一个用 Python 编写的 arctan 计算器。我们采用标准库中的 math 模块来实现 arctan 计算。
import math
def arctan(x):
return math.atan(x)
x = 0.5
res = arctan(x)
print(f"arctan({x}) = {res}")
python arctan_calculator.py
。