Get your own Python server Result Size: 625 x 565
x
 
thislist = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]
print(thislist[2:])
#This will return the items from index 2 to the end.
#Remember that index 0 is the first item, and index 2 is the third
['cherry', 'orange', 'kiwi', 'melon', 'mango']