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
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)