📌  相关文章
📜  如何在 python 代码示例中使用 sin inverse 和 cos inverse

📅  最后修改于: 2022-03-11 14:45:10.372000             🧑  作者: Mango

代码示例1
# import math library
import math
print(math.acos(-0.2))
print(math.acos(0))
print(math.acos(0.2))