list range python code example
Example 1: python make list from range
your_list = [*range(start, stop, step)]
[*range(10, 20, 2)]
--> [10, 12, 14, 16, 18]
Example 2: python create list from range
intList = list(range(r1, r2+1))
Example 3: get range of items of python list
names = ['Alice', 'Bob', 'Tom', 'Grace']
names[1:3]
Example 4: python range in intervals of 10
print("using start, stop, and step arguments in Python range() function")
print("Printing All odd numbers between 1 and 10 using range()")
for i in range(1, 10, 2):
print(i, end=', ')