python range on list 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']
intList = list(range(r1, r2+1))
names = ['Alice', 'Bob', 'Tom', 'Grace']
names[1:3]
# Output:
# ['Bob', 'Tom']