How to Create a List of Numbers from 1 to 1000 in Python?

15-May-2023

.

Admin

How to Create a List of Numbers from 1 to 1000 in Python?

Hi Dev,

In this post, we will learn to create a list of numbers from 1 to 1000 in Python tutorial examples. Here you will learn Python to create a list of 1 to 1000 of numbers. you will learn to create a list of numbers from Python 1 to 1000. This article goes into detail on how to create a list from 1 to 1000 in Python. Follow the below tutorial step of Python to create a list of numbers from 1 to 1000.

If you are looking to generate a list of numbers from 1 to 1000 in Python, there are several ways to create a list from 1 to 1000 in Python. here, I will give you two examples with range() and numpy library for creating new list numbers from 1 to 1000 in Python. so, let's see the example code.

Example :


main.py

# python create list 1 to 1000 of numbers

myList = list(range(1, 1001))

print(myList)

Output:

[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 

21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,

41, 42, 43, 44, 45, 46, 47, 48, 49, 50, ... 1000]

#Python