I am very new to Python. I am learning basic stuff and stumbled at this.
Why is 5 in the decimal not rounding to the next higher decimal digit in this example below?
>>> round(2.67576,4)
2.6758
>>> round(2.67575,4)
2.6757
I was expecting that the answer to both the expressions would be the same, but they aren't