range with list 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: range in python
#range(start,stop,step)
for x in range(0,20,2):
print(x)