Hello I’m working on the Frida Kahlo off platform project i’m stuck on task number four and keep getting this error. I’m not sure what i’m doing wrong in order to get this message. I have tried to fix it and look it up, any help would be great! Here’s my code…
paintings = ‘The Two Fridas’, ‘My Dress Hangs Here’, ‘Tree of Hope’, ‘Self Portrait With Monkeys’
dates = 1939, 1933, 1946, 1940
#Zipping paintings and dates into an object.
paintings = list(zip(paintings,dates))
print(paintings)
Adding new paintings to the collection. Adding names of paintings onto the paintings list.
new painting entry
paintings.append(‘The Broken Column’)
dates.append(1944)
#######
Here’s is the error I keep getting AttributeError: ‘tuple’ object has no attribute ‘append’
PLEASE HELP! thanks