如何从以下列表中随机检索项目?
foo = ['a', 'b', 'c', 'd', 'e']
如何从以下列表中随机检索项目?
foo = ['a', 'b', 'c', 'd', 'e']
当前回答
如果需要索引,只需使用:
import random
foo = ['a', 'b', 'c', 'd', 'e']
print int(random.random() * len(foo))
print foo[int(random.random() * len(foo))]
random.choice也会这样做:)
其他回答
从Python 3.6开始,您可以使用secrets模块,对于加密或安全用途,它比随机模块更好。
要打印列表中的随机元素:
import secrets
foo = ['a', 'b', 'c', 'd', 'e']
print(secrets.choice(foo))
要打印随机索引:
print(secrets.randbelow(len(foo)))
有关详细信息,请参见PEP 506。
我建议使用一个脚本来删除列表中随机选取的项目,直到列表为空:
维护一个集合并删除随机选取的元素(有选择),直到列表为空。
s=set(range(1,6))
import random
while len(s)>0:
s.remove(random.choice(list(s)))
print(s)
三次跑步给出三种不同的答案:
>>>
set([1, 3, 4, 5])
set([3, 4, 5])
set([3, 4])
set([4])
set([])
>>>
set([1, 2, 3, 5])
set([2, 3, 5])
set([2, 3])
set([2])
set([])
>>>
set([1, 2, 3, 5])
set([1, 2, 3])
set([1, 2])
set([1])
set([])
简而言之,使用random.sample方法
示例方法返回一个新列表,其中包含总体中的元素,而保持原始总体不变。结果列表按选择顺序排列,因此所有子切片也将是有效的随机样本。
import random
lst = ['a', 'b', 'c', 'd', 'e']
random.seed(0) # remove this line, if you want different results for each run
rand_lst = random.sample(lst,3) # 3 is the number of sample you want to retrieve
print(rand_lst)
Output:['d', 'e', 'a']
这是运行代码https://onecompiler.com/python/3xem5jjvz
使用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))
foo = ['a', 'b', 'c', 'd', 'e']
number_of_samples = 1
在Python 2中:
random_items = random.sample(population=foo, k=number_of_samples)
在Python 3中:
random_items = random.choices(population=foo, k=number_of_samples)