Answers for "Write a function that produces an array with the numbers 0 to N-1 in it. python"

3

create an array from 1 to n python

a_list = list(range(1, 5))

print(a_list)
[1,2,3,4,5]
Posted by: Guest on September-13-2020

Code answers related to "Write a function that produces an array with the numbers 0 to N-1 in it. python"

Python Answers by Framework

Browse Popular Code Answers by Language