Requesting Code Review: Off-platform Frida Kalo Project

I am currently 25% completed in the Data Analytics Career Path. I am from Alabama. A fun fact about me is I am growing a container garden for the first time this year.
I would love feedback on this project. Thanks! :grinning_face:

paintings = ['The Two Fridas', 'My Dress Hangs Here', 'Tree of Hope',' Self Portrait With Monkeys'] print(paintings) dates = [1939, 1933, 1946, 1940] paintings = list(zip(paintings, dates)) print(paintings) paintings.append(('The Broken Column', 1944)) paintings.append(('The Wounded Deer', 1946)) paintings.append(('Me and My Doll', 1937)) print(paintings) len(paintings) audio_tour_number= list(range(1, 8)) print(audio_tour_number) master_list = list(zip(audio_tour_number, paintings)) print(master_list)

I see it fine, maybe an improvement could be to set a list of paintings to be appended and then iterate it to append each painting.

Just dropped in to say I am at the same stage in the same career path! My only suggestion would be to add more comments so the reviewer is able to understand the goal. I am working on trying to do this as well, as I havenโ€™t really done so thusfar. Great job!