range of a list in python code example
Example 1: python create list from range
intList = list(range(r1, r2+1))
Example 2: get range of items of python list
names = ['Alice', 'Bob', 'Tom', 'Grace']
names[1:3]
# Output:
# ['Bob', 'Tom']
Example 3: python range of array
>>> new_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> print(new_list[5:9])
[6, 7, 8, 9]