我有一本字典'mydict'。
{ 'a': ['xyz1', 'xyz2'],
'b': ['xyz3', 'xyz4'],
'c': ['xyz5'],
'd': ['xyz6']}
我正在尝试使用以下代码打印出该字典的所有键和值:
for username, details in mydict.iteritems():
pprint.pprint(username + " " + details)
但是,我收到以下错误:
AttributeError: 'list' object has no attribute 'iteritems'
任何帮助,将不胜感激。