Answers for "the range of a list of numbers"

4

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
0

list range

>>> list(range(5, 10))
[5, 6, 7, 8, 9]

>>> list(range(0, 10, 3))
[0, 3, 6, 9]

>>> list(range(-10, -100, -30))
[-10, -40, -70]
Posted by: Guest on November-01-2021

Code answers related to "the range of a list of numbers"

Python Answers by Framework

Browse Popular Code Answers by Language