Create a tuple with some items and display with a for loop
inventory = ("a", "b", "c", "d") print "Your items:" for item in inventory: print item