猿问

询问用户输入,直到他们给出有效的响应

我正在编写一个必须接受用户输入的程序。

#note: Python 2.7 users should use `raw_input`, the equivalent of 3.X's `input`age = int(input("Please enter your age: "))if age >= 18: 
    print("You are able to vote in the United States!")else:
    print("You are not able to vote in the United States.")

如果用户输入合理数据,这将按预期工作。

C:\Python\Projects> canyouvote.py
Please enter your age: 23
You are able to vote in the United States!

但如果他们犯了错误,那就崩溃了:

C:\Python\Projects> canyouvote.py
Please enter your age: dickety six
Traceback (most recent call last):
  File "canyouvote.py", line 1, in <module>
    age = int(input("Please enter your age: "))
ValueError: invalid literal for int() with base 10: 'dickety six'

而不是崩溃,我希望它再次尝试获取输入。像这样:

C:\Python\Projects> canyouvote.py
Please enter your age: dickety six
Sorry, I didn't understand that.
Please enter your age: 26
You are able to vote in the United States!

我怎么能做到这一点?如果我还想拒绝像这样的上下文中-1的有效int但无意义的值,该怎么办?


翻阅古今
浏览 636回答 4
4回答

动漫人物

虽然接受的答案是惊人的。我还想分享这个问题的快速入侵。(这也解决了负面年龄问题。)f=lambda&nbsp;age:&nbsp;(age.isdigit()&nbsp;and&nbsp;((int(age)>=18&nbsp;&nbsp;and&nbsp;"Can&nbsp;vote"&nbsp;)&nbsp;or&nbsp;"Cannot&nbsp;vote"))&nbsp;or&nbsp;\ f(input("invalid&nbsp;input.&nbsp;Try&nbsp;again\nPlease&nbsp;enter&nbsp;your&nbsp;age:&nbsp;"))print(f(input("Please&nbsp;enter&nbsp;your&nbsp;age:&nbsp;")))PS此代码适用于python 3.x.
随时随地看视频慕课网APP

相关分类

Python
我要回答