gpt4 book ai didi

python - 如何定义一组变量,以便程序响应列表中的任何项目被调用,python3

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

我创建了一个列表,因此如果有人输入列表中的任何项目,它将打印相同的内容。

lista = ["example", "example2"]
listb = ["exampleb", "example2b"]
choice = input()
if choice == lista[]:
print("outputa")
elif choice == listb[]:
print("outputb")

如果用户键入 example 或 example2,它将打印 outputa,但如果用户键入 exampleb 或 example2b,它将打印 outputb。谢谢

最佳答案

lista = ["example", "example2"]
listb = ["exampleb", "example2b"]
choice = input()
if choice in lista:
print("outputa")
elif choice in listb:
print("outputb")

关于python - 如何定义一组变量,以便程序响应列表中的任何项目被调用,python3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39027038/

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