And here I am, ready to be butchered!
Anyone giving any useful insight is very welcome!
paintings = ['The Two Fridas', 'My Dress Hangs Here', 'Tre of Hope', 'Self Portrait With Monkeys']
dates = [1939, 1933, 1946, 1940]
#Zipping the two lists into one
paintings = list(zip(paintings, dates))
#Appending some more paintings to the list
paintings.append(('The Broken Column', 1944))
paintings.append(('The Wounded Deer', 1946))
paintings.append(('Me and My Doll', 1937))
#Checking how many painting we are worlking with
print("There are", len(paintings),"paintings")
#Generating list of audio tour number for each painting
audio_tour_number = [num + 1 for num in range(len(paintings))]
#Wrapping it all up and checking the final list
master_list = list(zip(paintings, audio_tour_number))
print(master_list)
Which outputs:
There are 7 paintings
[(('The Two Fridas', 1939), 1), (('My Dress Hangs Here', 1933), 2), (('Tre of Hope', 1946), 3), (('Self Portrait With Monkeys', 1940), 4), (('The Broken Column', 1944), 5), (('The Wounded Deer', 1946), 6), (('Me and My Doll', 1937), 7)]