I am implementing excel roundup function using python 3.6 and math.ceil returns the weird results.
math.ceil(0.56 * 100)
returns 57 while math.ceil(56)
and math.ceil(56.0)
return 56.
What should I do to get the correct result for math.ceil(a * b)
?