# Create a tuple
my_tuple = ('apple', 'banana', 'cherry', 'orange')
# Accessing items of a tuple
print(my_tuple[0])
print(my_tuple[1])
print(my_tuple[2])
print(my_tuple[3])apple
banana
cherry
orangemy_tuple` with four items : 'apple', 'banana', 'cherry', and 'orange'.my_tuple[0]` gives the first item ('apple'), `my_tuple[1]` gives the second item ('banana'), and so on.