Answers for "python code to get the number of items in a particular range when given 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

Code answers related to "python code to get the number of items in a particular range when given a list of numbers"

Python Answers by Framework

Browse Popular Code Answers by Language