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

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

当前回答

如果还需要索引,请使用random.randrange

from random import randrange
random_index = randrange(len(foo))
print(foo[random_index])

其他回答

如果需要索引,只需使用:

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

random.choice也会这样做:)

我建议使用一个脚本来删除列表中随机选取的项目,直到列表为空:

维护一个集合并删除随机选取的元素(有选择),直到列表为空。

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.randrange

from random import randrange
random_index = randrange(len(foo))
print(foo[random_index])

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

import random
foo = ['a', 'b', 'c', 'd', 'e']
print(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)