When I do this calculation
2*(5+5/(3+3))*3
I get 30 in Python (2.7).
But what it seems is that 2*(5+5/(3+3))*3
is equal to 35
.
Can someone tell me why python gives me the answer of 30 instead of 35?
I've tested with JavaScript, Lua and Mac Calculator and they show me 35.
Why does Python calculate wrong?