I started learning Python, and I'm working on input/output subject and I got this error:
File "c:\Users\never\Desktop\Projects with IT\__pycache__\writing.py", line 30, in <module>
title, artist, year, tracks = imelda
ValueError: too many values to unpack (expected 4)
And this is my code:
imelda = ('mother may', 'Imelda May', '2011', (1, 'Pulling the Rug'), (2, 'Psycho'), (3, 'Amine'))
print(imelda)
title, artist, year, tracks = imelda
print(title)
print(artist)
print(year)