Python字典本身是無序的,但可以通過以下方法對字典進(jìn)行排序輸出:
my_dict = {'b': 2, 'a': 1, 'c': 3}
sorted_keys = sorted(my_dict)
for key in sorted_keys:
print(key, my_dict[key])
my_dict = {'b': 2, 'a': 1, 'c': 3}
sorted_items = sorted(my_dict.items(), key=lambda x: x[0])
for key, value in sorted_items:
print(key, value)
from collections import OrderedDict
my_dict = {'b': 2, 'a': 1, 'c': 3}
sorted_dict = OrderedDict(sorted(my_dict.items(), key=lambda x: x[0]))
for key, value in sorted_dict.items():
print(key, value)
以上方法可以根據(jù)需要選擇適合的排序方式輸出字典的內(nèi)容。