如何从列表中随机选择一个项目?

假设我有以下列表:

foo = ['a', 'b', 'c', 'd', 'e']

从这个列表中随机检索一个项目的最简单方法是什么?


使用random.choice

import random

foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))

对于加密安全的随机选择(例如,用于从单词列表生成密码短语),请使用random.SystemRandom类:

import random

foo = ['battery', 'correct', 'horse', 'staple']
secure_random = random.SystemRandom()
print(secure_random.choice(foo))

如果你还需要索引:

foo = ['a', 'b', 'c', 'd', 'e']
from random import randrange
random_index = randrange(0,len(foo))
print foo[random_index]

如果你想从列表中随机选择多个项目,或从一个集合中选择一个项目,我建议使用random.sample

import random
group_of_items = {1, 2, 3, 4}               # a sequence or set will work here.
num_to_select = 2                           # set the number to select here.
list_of_random_items = random.sample(group_of_items, num_to_select)
first_random_item = list_of_random_items[0]
second_random_item = list_of_random_items[1] 

如果您只是从列表中拉出单个项目,则选择不会random.sample(some_list, 1)[0]笨重,因为使用示例将具有random.sample(some_list, 1)[0]而不是random.choice(some_list)语法的语法。

不幸的是,选择仅适用于序列的单个输出(例如列表或元组)。 虽然random.choice(tuple(some_set))可能是从一个集合中获取单个项目的选项。

链接地址: http://www.djcxy.com/p/4823.html

上一篇: How to randomly select an item from a list?

下一篇: CSS Background Opacity