demo_list_range3.py:
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
C:\Users\My Name>python demo_list_range3.py
['cherry', 'orange', 'kiwi', 'melon', 'mango']