# create a tuple
my_tuple = ('apple', 'banana', 'cherry')
# loop through the tuple
for item in my_tuple:
print(item)apple
banana
cherrymy_tuple` that contains three elements. We then use a `for` loop to iterate over the elements of the tuple. For each element, we print it to the console.