Update p07_ordered_dict.py

Modify wrong retract code
This commit is contained in:
xiuyanduan
2016-08-31 13:48:16 +08:00
committed by GitHub
parent a43f703b6c
commit edbc90c00a

View File

@@ -7,13 +7,13 @@ Desc :
from collections import OrderedDict
def ordered_dict():
d = OrderedDict()
d['foo'] = 1
d['bar'] = 2
d['spam'] = 3
d['grok'] = 4
# Outputs "foo 1", "bar 2", "spam 3", "grok 4"
for key in d:
d = OrderedDict()
d['foo'] = 1
d['bar'] = 2
d['spam'] = 3
d['grok'] = 4
# Outputs "foo 1", "bar 2", "spam 3", "grok 4"
for key in d:
print(key, d[key])