如何在不彈出內容的情況下打印隊列字典? 我有這樣的事情:打印隊列字典
>>> mac = '\x04\xab\x4d'
>>> mydict = {}
>>> if mac in mydict.keys():
... mydict[mac].append("test")
... else:
... mydict[mac]=[]
... mydict[mac].append("test")
...
>>>
>>> for key,val in mydict.Items():
... print key
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'dict' object has no attribute 'Items'
>>> for key,val in mydict.Item():
... print key
,我想知道我怎麼能顯示我的字典裏的內容...
謝謝! Ron
這是'mydict.items()'用小寫'i'。 –
箍,謝謝。你可能想把這個作爲答案,我會檢查它的答案。 – cerr