gpt4 book ai didi

python选择列表,然后从获奖列表中选择一个项目

转载 作者:太空宇宙 更新时间:2023-11-04 09:33:20 25 4
gpt4 key购买 nike

试着按照规定去做,让 python 随机选择一个列表,然后从“获胜”列表中选择一个语句并输出它

类似于:

import random

list1 = a, b, c, d
list2 = e, f, g, h
list3 = i, j, k, l
list4 = list1, list2,list3

output = random.choice(list4)
print(output)

but say list3 won and the output is k

最佳答案

在 Python 3 中的代码:

import random

list1 = ['a', 'b', 'c', 'd']
list2 = ['e', 'f', 'g', 'h']
list3 = ['i', 'j', 'k', 'l']
list4 = [list1, list2, list3]

winning_list = random.choice(list4)
output = random.choice(winning_list)
print(output)

给我:

">>> j

或列表列表中的其他一些随机字母!这会像您想要做的那样吗?

关于python选择列表,然后从获奖列表中选择一个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54793513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com