gpt4 book ai didi

python - 如果用户输入无效答案如何重做输入

转载 作者:行者123 更新时间:2023-11-28 21:49:59 24 4
gpt4 key购买 nike

我是编程新手,我想知道如果用户输入无效数据,我该如何重复输入部分。

我希望应用程序只重复输入部分,而不是必须重新运行函数并让用户重新输入所有内容。

我的猜测是我必须将“return main()”更改为其他内容。

condition = input("What is the condition of the phone(New or Used)?")
if condition not in ["New", "new", "Used", "used"]:
print("Invalid input")
return main()

gps = input("Does the phone have gps(Yes or No)?")
if gps not in ["Yes", "yes", "No", "no"]:
print("Invalid input")
return main()

最佳答案

你可以创建一个方法来循环检查它:

def check_input(values,  message):
while True:
x = input(message)
if x in values:
return x
print "invalid values, options are " + str(values)

关于python - 如果用户输入无效答案如何重做输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32553941/

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