Indexes
1 2 3 4
a b c d
-4 -3 -2 -1
words = [“One of”, “you”, “is blue”]
Print(“\nMy original words:”, words}
input(“print any key to continue”)
print(“\nMy words backward: \n”)
for i in range (len(words) -1, -1, -1): # starts at -1, ends at -1, steps by -1
print (words [i])