Python3 "math.sin" 函数返回错误结果(角度以弧度为单位。)
Python3 "math.sin" function returning incorrect result (the angle is in radians.)
>>> import math
>>> math.sin(math.radians(180))
1.2246467991473532e-16
>>>
180º的正弦不是0.0吗?
它是圆周率的近似值。您可以将其四舍五入为 0。
>>> import math
>>> math.sin(math.radians(180))
1.2246467991473532e-16
>>>
180º的正弦不是0.0吗?
它是圆周率的近似值。您可以将其四舍五入为 0。