My first off-platform project: Frida Kahlo

Hi Everyone, I am Keanen,

Time zone UTC +2
Currently focusing on Business Intelligence Data Analyst @ 35%.
Based in South Africa.

I would appreciate a review.

# Task 1 - create a list called paintings and add 4 paintings paintings = ["The Two Fridas", "My Dress Hangs Here", "Tree of Hope", "Self Portrait With Monkeys"] # Task 2 - create a list called dates and add 4 dates dates = [1939, 1933, 1946, 1940] # Task 3 - Zip together the 2 lists and conver the zip object to a list. Print the result. paintings = list(zip(paintings, dates)) print(paintings) # Task 4 - append 3 paintings and their dates, our list paintings.append(("The Broken Column", 1944)) paintings.append(("The Wounded Deer", 1946)) paintings.append(("Me and My Doll", 1937)) print(paintings) # Task 5 - find lenth of paintings list number_of_paintings = len(paintings) print(number_of_paintings) # Task 6 - generate a list of id's from 1 to length of paintings list, using the range object and save it to a list called audio_tour_number audio_tour_number = list(range(1, number_of_paintings + 1)) print(audio_tour_number) # Task 7 - zip the audio_tour_number list to the paintings lists, save to master_list. Convert zip object to a list master_list = list(zip(paintings, audio_tour_number)) # Task 8 - print master_list print(master_list)

Thank you in advance.

Hi @keanenswartz!

I am Mario:
Living in San Diego, California USA. Time Zone PST (GMT-8)
I am working on Data Scientist : Analytics Career Path and am at 27%

A few things I noticed when inputting your code into Jupyter Notebook:
1.) The first and last line did not have the # which did not allow the code to run.
2.)Differentiating the combined list as maybe “Paintings_created” might help with identifying the new variable/list.
3.) An alternate way to append the additional paintings/dates:

<painting_additions = [(“The Broken Column”, 1944), (“The Wounded Deer”, 1946), (“Me and My Doll”, 1937)]
paintings.extend(painting_additions)
print(paintings)>

There was some minor typos in the comments you provided but nothing that provided mis-direction.

Everything else looked and worked great! Good Job!

Best regards,
Mario