Why when decreasing decimal part after 10.0000000000000008 the comparison returning True?
>>> 10 == 10.000000000000001
False
>>> 10 == 10.0000000000000001
True
Why when decreasing decimal part after 10.0000000000000008 the comparison returning True?
>>> 10 == 10.000000000000001
False
>>> 10 == 10.0000000000000001
True