gpt4 book ai didi

python - 在 while 循环中使用 'not in' 和 'or'

转载 作者:太空宇宙 更新时间:2023-11-03 18:43:17 25 4
gpt4 key购买 nike

我正在尝试使用 while 循环来确保输入是我想要的。这段代码是我正在尝试做的事情的一个例子。有什么办法可以做到这一点吗?

谢谢。

colours=["red","black","blue"]

colour=raw_input("enter a colour")
while colour not in colours or colour!="exit":
colour=raw_input("enter a colour")

最佳答案

您需要使用and而不是or:

while colour not in colours and colour!="exit":

您当前的代码将不断循环,因为colour始终不在colours中或不等于“exit”.

关于python - 在 while 循环中使用 'not in' 和 'or',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20057427/

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