This is the code I typed:
s=0.0
for i in range(10):
s+=0.1
print(s)
And this was the output:
0.1
0.2
0.30000000000000004
0.4
0.5
0.6
0.7
0.7999999999999999
0.8999999999999999
0.9999999999999999
Can someone please explain why it becomes 0.7999999999999999 after 0.7?
P.S : I know why it became 0.300...004