Python 3 – ValueError: not enough values to unpack (expected 3, got 2)
You probably want to assign the lastname you are reading out here to something; currently the program just forgets it you could do that two lines after, like so your program will still crash at the same place, because .items() still won’t give you 3-tuples but rather something that has this structure: (name, (lastname, email)) good news is, python can … Read more