Hi! I’m Dawid and i’m on 24% Data Scientist: Analytics. I’m from Poland and one funny fact about me : i’m lawyer and civil servant and now I have decided to become a data analyst
Can someone check my code?
And for the end one question → why do I have to put +1 here? I don’t understand this
audio_tour_number = list(range(1,paintings_length + 1))
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(list(paintings))
additional_paintings = [("The Broken Column", 1944), ("The Wounded Deer", 1946), ("Me and My Doll", 1937)]
paintings = paintings + additional_paintings
print(paintings)
paintings_length = len(paintings)
print(paintings_length)
audio_tour_number = list(range(1,paintings_length + 1))
print(audio_tour_number)
master_list = list(zip(audio_tour_number, paintings))
print(list(master_list))