Answers for "python create list of numbers from 1 to n"

5

array of 1 to 100 python

myList = list(range(1, 101))
Posted by: Guest on May-22-2020
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
1

python list 1 to n

a_list = list(range(1, 5))
Posted by: Guest on May-04-2021
2

creating list of numbers in python

# Python3 Program to Create list 
# with integers within given range 
  
def createList(r1, r2):
    return list(range(r1, r2+1))
      
# Driver Code
r1, r2 = -1, 1
print(createList(r1, r2))
Posted by: Guest on June-22-2021

Code answers related to "python create list of numbers from 1 to n"

Python Answers by Framework

Browse Popular Code Answers by Language