Answers for "how to get the element from list in specific range"

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 "how to get the element from list in specific range"

Python Answers by Framework

Browse Popular Code Answers by Language