Create List of Numbers from Range in Python Tutorial Example

12-May-2023

.

Admin

Create List of Numbers from Range in Python Tutorial Example

Hi Dev,

I will explain step by step tutorial and create a list of numbers from the range in the Python tutorial example. it's a simple example of Python creating a list range of numbers. This article goes into detail on creating a list of numbers in the Python range. I explained simply step by step how to create a list from range in Python. Here, Creating a basic example of Python create a list of numbers from range.

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

Example :


main.py

# python create list range of numbers

myList = list(range(10, 16))

print(myList)

Output:

[10, 11, 12, 13, 14, 15]

#Python