Python用户输入错误处理

时间:2013-10-16 15:54:53

标签: python user-input

我不知道为什么我之前从未想过这个...但我想知道是否有更整洁/更短/更有效的错误处理用户输入方式。例如,如果我要求用户输入“hello”或“goodbye”,并输入其他内容,我需要它告诉用户它是错误的并再次询问。

对于我曾经做过的所有编码,我就是这样做的(通常问题更好):

choice = raw_input("hello, goodbye, hey, or laters? ") 

while choice not in ("hello","goodbye","hey","laters"):

   print "You typed something wrong!"

   choice = raw_input("hello,goodbye,hey,or laters? ")

有更聪明的方法吗?或者我应该坚持我的拥有方式?这是我用于编写所有语言的方法。

谢谢,

肖恩

4 个答案:

答案 0 :(得分:4)

对于一个简单的脚本,你拥有它的方式很好。

对于更复杂的系统,您可以有效地编写自己的解析器。

def get_choice(choices):
  choice = ""
  while choice not in choices:
      choice = raw_input("Choose one of [%s]:" % ", ".join(choices))
  return choice

choice = get_choice(["hello", "goodbye", "hey", "laters"])

答案 1 :(得分:1)

你可以用递归

来做
>>> possible = ["hello","goodbye","hey"]
>>> def ask():
...     choice = raw_input("hello,goodbye,hey,or laters? ")
...     if not choice in possible:
...         return ask()
...     return choice
... 
>>> ask()
hello,goodbye,hey,or laters? d
hello,goodbye,hey,or laters? d
hello,goodbye,hey,or laters? d
hello,goodbye,hey,or laters? hello
'hello'
>>> 

答案 2 :(得分:0)

你就是这样做的。 根据您的使用方式,列表中的选项可能更漂亮。

options = ["hello", "goodbye", "hey", "laters"]
while choice not in options:
    print "You typed something wrong!"

答案 3 :(得分:0)

如果您修改代码以始终输入while循环,则只需要在一行上设置raw_input

while True:
    choice = raw_input("hello, goodbye, hey, or laters? ")
    if choice in ("hello","goodbye","hey","laters"):
        break
    else:
        print "You typed something wrong!"