Files
python3-cookbook/cookbook/c01/p07_ordered_dict.py

20 lines
280 B
Python
Raw Normal View History

2014-09-02 10:15:43 +08:00
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
Topic: 排序字典
Desc :
"""
from collections import OrderedDict
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])
2014-09-02 10:15:43 +08:00