So i have a list and a for loop (still a beginner sorry) and i want this code but in a more simplified way and without a new backwards list. ^The edit
lyrics = [["First", "and a partride in a pear tree",], ["second", "2 things"], ["Third", "3 things"], ["Fourth", "4 things"], ["Fifth", "5 things"], ["Sixth", "six things"], ["Seven", "7 things"], ["Eigth", "8 things"], ["Nineth", "nine things"], ["tenth", "Ten things"], ["eleventh", "eleven things"], ["Twelveth", "twelve things"]]
backwards = []
for i in range(12):
print("On the", lyrics[i][0], "my true love gave to me, lyrics[i][1])
backwards.append(lyrics[i][1])
for each in backwards:
print (each) #Forgot how i did it in the reverse order but i want this in a more simplified version to learn from.
PS: Would like as few lines as possible (im able to do it in 8 lines but would like at least 3-4) :/