Create List of Numbers from 1 to 100 in Python Tutorial Example

13-May-2023

.

Admin

Create List of Numbers from 1 to 100 in Python Tutorial Example

Hi Dev,

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

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

Example :


main.py

# python create list 1 to 100 of numbers

myList = list(range(1, 101))

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, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,

61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,

81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100]

#Python