python list of natural numbers code example
Example: how to fill an array with consecutive numbers python
array = [x for x in range(0, 10)]
print(array)
#OUTPUT: [0, 1, 2, 3, 4, 5 6, 7, 8, 9]
array = [x for x in range(0, 10)]
print(array)
#OUTPUT: [0, 1, 2, 3, 4, 5 6, 7, 8, 9]