python 如何让字典保持有序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 如何让字典保持有序相关的知识,希望对你有一定的参考价值。

from time import time
from random import ranint
from collections import OrderedDict

d = OrderedDict()
players = list('ABCDEFGH')
start = time()

for i in range(8):
  input()
  players.pop(randint(0,7-i))
  end = time()
  print(i+1,p,end-start)
  d[p] = (i+1,end-start)
  
print ('-'*20)

for k in d:
  print(k,d[k])

以上是关于python 如何让字典保持有序的主要内容,如果未能解决你的问题,请参考以下文章

Python强化训练笔记——让字典保持有序性

Python实用技法第6篇:让字典保持有序

如何让字典保持有序

如何让字典保持有序

如何让字典保持有序?

问题6:如何让字典保持有序(使用collections的OrderedDict方法)