Skip to content

Instantly share code, notes, and snippets.

@Everfighting
Created May 18, 2017 14:39
Show Gist options
  • Save Everfighting/6d13935a342673e3032455b579266ce0 to your computer and use it in GitHub Desktop.
Save Everfighting/6d13935a342673e3032455b579266ce0 to your computer and use it in GitHub Desktop.
如何让字典保持有序
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])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment