Daftar Python dari nomor utuh

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