why does a simple python calculation give a different result than same calculation in PHP or pocket-calculator?
tmp = (50.73 / 120) * 20
in python3 tmp now is 8.45499999999
in php and other calculators it leads to 8.455
(without any manual rounding)
my problem here is that i need to round (commercial rounding) the tmp variable with 2 decimal points and this leads in python3 to 8.45
which is not correct. commercially rounded 8.455
would be 8.46