gpt4 book ai didi

python - 转到特定的 raw_input() 吗?

转载 作者:行者123 更新时间:2023-11-30 22:46:56 24 4
gpt4 key购买 nike

所以我试图弄清楚如何让这个简单的小程序在用户输入其他内容然后"is"或“否”时返回到 raw_input。

a = raw_input("test: ")
while True:
if a == "yes":
print("yeyeye")
break
elif a == "no":
print("nonono")
break
else:
print("yes or no idiot")

这是我到目前为止所得到的,我是新手,很难理解。提前致谢。

最佳答案

正如 @DavidG 提到的,只需在循环中添加 raw_input 语句即可:

while True:
a = raw_input("Enter: ")
if a == "yes":
print("You have entered Yes")
break
elif a == "no":
print("You have entered No")
break
else:
print("yes or no idiot")

关于python - 转到特定的 raw_input() 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40721651/

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