I have some expressions on a spreadsheet and trying to convert them to python, but I am having different results on a particular one:
Spreadsheet =0+(1-0)*(1-COS(0.08726646259971647))^5 == 0.0
Python 0 + (1-0) * (1-math.cos(0.08726646259971647))**5 == 7.978947260671464e-13 (???)
I know that the values should be 0, what am i doing wrong in python? Thank you
Python 2.7.3(in an host application)