Result Size: 625 x 571
demo_tuple_range.py:
x
 
thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(thistuple[2:5])
#This will return the items from position 2 to 5.
#Remember that the first item is position 0,
#and note that the item in position 5 is NOT included
C:\Users\My Name>python demo_tuple_range.py
('cherry', 'orange', 'kiwi')