从随机生成的列表中选择-python

时间:2018-08-14 13:28:20

标签: python list random

我正在尝试在python中创建一个随机列表。每次运行代码时,列表中的随机单词都会按顺序出现。我试图做的是这样:

import random
numSelect = 0
list = ['thing1', 'thing2', 'thing3', 'thing4', 'thing5']
for i in range(random.randint(1, 3)):
    rThing = random.choice(list)
    numSelect = numSelect + 1
    print(numSelect, '-' , rThing)

目标是要求用户从要显示的列表中选择某些内容。这是我想要的输出示例:

1 - thing4

2 - thing2

Which one do you choose?: 

(User would type '2')

*output of thing2*

3 个答案:

答案 0 :(得分:1)

您可以使用random.sample从原始列表中获取子集。

然后,您可以使用enumerate()对其进行编号,并使用input进行输入。

import random

all_choices = ["thing1", "thing2", "thing3", "thing4", "thing5"]

n_choices = random.randint(1, 3)
subset_choices = random.sample(all_choices, n_choices)


for i, choice in enumerate(subset_choices, 1):
    print(i, "-", choice)

choice_num = 0
while not (1 <= choice_num <= len(subset_choices)):
    choice_num = int(
        input("Choose (%d-%d):" % (1, len(subset_choices)))
    )

choice = subset_choices[choice_num - 1]

print("You chose", choice)

答案 1 :(得分:0)

您可以先随机播放列表,然后为列表中的每个项目分配一个数字:

from random import shuffle

random_dict = {}
list = ['thing1', 'thing2', 'thing3', 'thing4', 'thing5']

shuffle(list)

for number, item in enumerate(list):
    random_dict[number] = item

使用字典理解的相同代码:

from random import shuffle

list = ['thing1', 'thing2', 'thing3', 'thing4', 'thing5']
shuffle(list)
random_dict = {number: item for number, item in enumerate(list)}

然后您有了一本字典,键从0开始(如果要从1开始枚举,只需设置enumerate(list, start=1)),然后从列表中随机排序这些项目即可。

字典本身并不是真正必要的,因为改组列表中的每个项目都已经有位置。但无论如何,我还是推荐它,这很容易。

然后您可以像这样使用字典:

for k, v in random_dict.items():
    print("{} - {}".format(k, v))

decision = int(input("Which one do you choose? "))
print(random_dict[decision])

答案 2 :(得分:0)

如果我的理解正确,那么您的主要问题是列出列表中的所有项目正确吗?

要轻松显示列表中的所有项目,然后以他们选择的内容进行响应,此代码应该有效。

list = ['thing1', 'thing2', 'thing3', 'thing4', 'thing5']
for i in range(len(list)):
    print(str(i)+": "+list[i])
UI = input("Make a selection: ")
print("You selected: "+list[int(UI)])

或将最后一个打印语句更改为您需要程序使用用户输入UI完成的任何操作。