Portfolio project: frida kahlo

Hello everyone,
I am trying to learn Python to become a data analyst. I finished the first Python chapter in the BI Data Analyst course and completed the Frida Kahlo project. I was wondering if any of you would be so kind to revise my code here below. Meanwhile, considering my beginner level, I wonder if any of you would like to send me a code to review.
I appreciate your help :hand_with_index_finger_and_thumb_crossed: :hand_with_index_finger_and_thumb_crossed:

paintings = [ā€œThe Two Fridasā€, ā€œMy Dress Hangs Hereā€, ā€œTree of Hopeā€, ā€œSelf Portrait With Monkeysā€]
dates = [1939, 1933, 1946, 1940]
paintings = list(zip(paintings, dates))
print(paintings)
additional_paintings = [(ā€˜The Broken Columnā€™, 1944),
(ā€˜The Wounded Deerā€™, 1946), (ā€˜Me and My Dollā€™, 1937)]
print(ā€˜new paintings list:ā€™, paintings)
print(len(paintings))
for number in range(1, 8, 1):
print(number)
audio_tour_number = [number for number in range(1, 8, 1)]
master_list = list(zip(audio_tour_number, paintings))
print(master_list)