当前位置:  开发笔记 > 编程语言 > 正文

从字典中选择随机值

如何解决《从字典中选择随机值》经验,为你挑选了2个好方法。

假设我有这本词典:

dict = {'a': 100, 'b': 5, 'c': 150, 'd': 60};

我得到了这个代码具有最大价值的密钥:

most_similar = max(dic.iteritems(), key=operator.itemgetter(1))[0]

它返回 'c'

但我想从前3个最大值中选择一个随机密钥.根据这本词典,前三名是:

c
a
d

它应该从中随机选择一个键.我怎样才能做到这一点?



1> thefourtheye..:

如果你想找到前三个键,然后随机获得一个键,那么我建议使用random.choicecollections.Counter,像这样

>>> d = {'a': 100, 'b': 5, 'c': 150, 'd': 60}
>>> from collections import Counter
>>> from random import choice
>>> choice(Counter(d).most_common(3))[0]
'c'

Counter(d).most_common(3) 将根据传递给它的字典对象的值从字典中获取前三个值,然后我们随机选择一个返回的值并仅返回其中的键.


仅挑选3个元素`most_common`应该更接近线性时间http://stackoverflow.com/questions/29240807/python-collections-counter-most-common-complexity

2> timgeb..:

获取具有三个最大值的键.

>>> import heapq
>>> d = {'a': 100, 'b': 5, 'c': 150, 'd': 60}
>>> largest = heapq.nlargest(3, d, key=d.__getitem__)
>>> largest
['c', 'a', 'd']

然后随机选择其中一个:

>>> import random
>>> random.choice(largest)
'c'

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有