>>> 8.7+4.1
12.799999999999999
>>> 2.0+3.2
5.2
>>> 3.7+5.1
8.8
I don't understand why the first addition returns a repeating number and then why the other doesn't. Using Python 3.6.1 terminal
>>> 8.7+4.1
12.799999999999999
>>> 2.0+3.2
5.2
>>> 3.7+5.1
8.8
I don't understand why the first addition returns a repeating number and then why the other doesn't. Using Python 3.6.1 terminal