當前位置:成語大全網 - 新華字典 - Python字典排序問題?

Python字典排序問題?

有的,妳可以使用第三方庫sortedcontainers,可以使用pip安裝它。它由純Python和快速C實現,能夠按順序自動維護鍵,而且速度非常快。下面是演示

from sortedcontainers import SortedDict

sd = SortedDict({'c': 3, 'a': 1, 'b': 2})

print(sd)

輸出:

SortedDict({'a': 1, 'b': 2, 'c': 3})