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

2022-09-05 00:47:14

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

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

答案 1

使用 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))

secrets是 Python 3.6 中的新增功能。在较旧版本的Python上,您可以使用随机。系统随机类:

import random

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

答案 2

如果要从列表中随机选择多个项目,或者从集合中选择一个项目,我建议改用。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] 

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

不幸的是,选择仅适用于序列(如列表或元组)的单个输出。虽然可能是从集合中获取单个项目的一个选项。random.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

如果你想要一个更pythonic的单行来选择多个项目,你可以使用解压缩。

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

推荐