For Loops

print (np.arange(5))

this creates an array 0,1,2,3,4


for j in np.arange(5):

    j += 2

print(j)


print range