Liste python des nombres entiers
x_arr = [i for i in range(N)] # say N is a whole number
# the list would be from 0 to N-1
Ivory Knight
x_arr = [i for i in range(N)] # say N is a whole number
# the list would be from 0 to N-1