Code review request for Frida Kahlo project (on Jupyter notebook)

Hello everyone, I am in Greece and currently I am 20% through the Data Scientist: Machine Learning path. I have just completed the Frida Kahlo project working on Jupyter notebook and I am hoping for a code review. I will also be happy to review yours.

My GitHub link

I have had a chance to look at your code, and it looks good. You used simple one line list creations when using the zip function. For task 5, you used concatenation to create your string. For strings like this I really like using f"" strings as they auto convert integers and floats into strings for you. I feel they also make reading the information more clear. But this may just be mostly opinion on my part. So, you could have done step 5 as such:

paintings = [('The Two Fridas', 1939), ('My Dress Hangs Here', 1933), ('Tree of Hope', 1946), ('Self Portrait With Monkeys', 1940), ('The Broken Column', 1944), ('The Wounded Deer', 1946), ('Me and My Doll', 1937)] # There are two ways to use f"" strings in this situation for a single line of code it could have been done like this print(f"The length of the paintings list is {len(paintings)}") # Or it could be done like this length = len(paintings) print(f"The length of the paintings list is {length}")

Hopefully this helps when creating future strings.