I am new to python and I tried this:
import numpy as np
x = np.arange(0.7,1.3,0.1)
print (x)
y = np.arange(0.6,1.3,0.1)
print (y)
The output was [ 0.7  0.8  0.9  1.   1.1  1.2  1.3] and [ 0.6  0.7  0.8  0.9  1.   1.1  1.2]. Why in the first case 1.3 appears in the list and in the second case it doesn't? 
 
     
     
     
    