list range in python code example

Example 1: python make list from range

# Basic syntax:
your_list = [*range(start, stop, step)]
# Where * is the argument-unpacking operator

# Example usage:
# Say you want to create a list of even numbers ranging from 10-20
[*range(10, 20, 2)]
--> [10, 12, 14, 16, 18]

Example 2: python range of array

>>> new_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> print(new_list[5:9])
[6, 7, 8, 9]

Example 3: in range python

for i in range(x) :
  #code

Example 4: in range python

for i in range(x) #[0;x[