I am facing a problem with the round function of python. When I round with 2 digits by executing round(0.715,2)
the answer is 0.71, similarly when I execute round(0.615,2)
the result is 0.61. But when I execute round(0.515,2)
it gives 0.52, similarly for round(0.915,2)
the result is 0.92.
Can someone explain this?