Answers for "get range of items of python list"

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

Python Answers by Framework

Browse Popular Code Answers by Language