Something is happening and I have no idea why.
In python:
for j in range(1,10):
print(0.1*j)
which returns:
0.1
0.2
0.30000000000000004
0.4
0.5
0.6000000000000001
0.7000000000000001
0.8
0.9
what is happening?
Something is happening and I have no idea why.
In python:
for j in range(1,10):
print(0.1*j)
which returns:
0.1
0.2
0.30000000000000004
0.4
0.5
0.6000000000000001
0.7000000000000001
0.8
0.9
what is happening?