>>> import math
>>> math.sin(68)
-0.897927680689
sin(68)=0.927(3dp)
Any ideas about why I am getting this result? Thanks.
|
|
|
|
|
|
|
math.sin expects its argument to be in radians, not degrees, so:
|
||||||||||||||
|