作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是编程新手,我想知道如果用户输入无效数据,我该如何重复输入部分。
我希望应用程序只重复输入部分,而不是必须重新运行函数并让用户重新输入所有内容。
我的猜测是我必须将“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/
我是一名优秀的程序员,十分优秀!