I am getting the too many values to unpack error. Any idea how I can fix this?
first_names = ['foo', 'bar']
last_names = ['gravy', 'snowman']
fields = {
'first_names': first_names,
'last_name': last_names,
}
for field, possible_values in fields: # error happens on this line
Python 3
Use
items().Python 2
Use
iteritems().See this answer for more information on iterating through dictionaries, such as using
items(), across Python versions.For reference,
iteritems()was removed in Python 3.