我打算使用Some Angles编程..使用Py3 如何让Python使用Degrees System而不是Radian .. 我试过:
A=cos(22)
A=degrees(A)
print (A)
and the output is not Equaling 0.92718
答案 0 :(得分:2)
您可能也知道 numpy 库。你可以非常明确地做出你想做的事。
>>> import numpy as np
>>> np.cos(np.deg2rad(22))
0.92718385456678742
答案 1 :(得分:1)
Python包括用于弧度和度数的转换函数
A = math.cos(math.radians(22))