如何从以下列表中随机检索项目?

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

当前回答

我通常使用随机模块处理列表和随机化:

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

其他回答

随机项目选择:

import random

my_list = [1, 2, 3, 4, 5]
num_selections = 2

new_list = random.sample(my_list, num_selections)

要保持列表的顺序,可以执行以下操作:

randIndex = random.sample(range(len(my_list)), n_selections)
randIndex.sort()
new_list = [my_list[i] for i in randIndex]

的副本https://stackoverflow.com/a/49682832/4383027

这可能已经是一个答案,但您可以使用random.shuffle。示例:

import random
foo = ['a', 'b', 'c', 'd', 'e']
random.shuffle(foo)

使用random.choice():

import random

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

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

import secrets

foo = ['battery', 'correct', 'horse', 'staple']
print(secrets.choice(foo))

Python 3.6中的新秘密。在旧版本的Python上,可以使用random.SystemRandom类:

import random

secure_random = random.SystemRandom()
print(secure_random.choice(foo))

从Python 3.6开始,您可以使用secrets模块,对于加密或安全用途,它比随机模块更好。

要打印列表中的随机元素:

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

要打印随机索引:

print(secrets.randbelow(len(foo)))

有关详细信息,请参见PEP 506。

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

import random
group_of_items = {'a', 'b', 'c', 'd', 'e'}  # 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] 

如果您只从列表中提取一个项目,那么choice就不那么麻烦了,因为使用sample将使用语法random.sample(some_list,1)[0],而不是random.cochoice(some_list)。

不幸的是,选择只适用于序列(如列表或元组)的单个输出。尽管随机。choice(tuple(some_set))可能是从集合中获取单个项的选项。

编辑:使用秘密

正如许多人所指出的,如果您需要更安全的伪随机样本,您应该使用secrets模块:

import secrets                              # imports secure module.
secure_random = secrets.SystemRandom()      # creates a secure random object.
group_of_items = {'a', 'b', 'c', 'd', 'e'}  # a sequence or set will work here.
num_to_select = 2                           # set the number to select here.
list_of_random_items = secure_random.sample(group_of_items, num_to_select)
first_random_item = list_of_random_items[0]
second_random_item = list_of_random_items[1]

编辑:Pythonic One Liner

如果你想要一个更像蟒蛇的一行程序来选择多个项目,你可以使用解包。

import random
first_random_item, second_random_item = random.sample({'a', 'b', 'c', 'd', 'e'}, 2)