Run
vowels = ('a', 'e', 'i', 'o', 'u') item = vowels[-1] print(item) #u item = vowels[-2] print(item) #o item = vowels[-3] print(item) #i
Output