Daftar Integer Python

x_arr = [i for i in range(N)] # say N is any positive integer
							  # the list would be from 0 to N-1
Ivory Knight