Answers for "python get range of values in list"

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

Code answers related to "python get range of values in list"

Python Answers by Framework

Browse Popular Code Answers by Language