Answers for "range of a list in python"

3

python create list from range

intList = list(range(r1, r2+1))
Posted by: Guest on November-19-2020
2

get range of items of python list

names = ['Alice', 'Bob', 'Tom', 'Grace']

names[1:3]
# Output:
# ['Bob', 'Tom']
Posted by: Guest on April-08-2020
1

python range of array

>>> new_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> print(new_list[5:9])
[6, 7, 8, 9]
Posted by: Guest on January-16-2020

Code answers related to "range of a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language