亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決python面對用戶無意義輸入的問題

發布時間:2021-08-10 12:40:21 來源:億速云 閱讀:126 作者:小新 欄目:編程語言

這篇文章主要介紹如何解決python面對用戶無意義輸入的問題,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

問題

正在編寫一個接受用戶輸入的程序。

#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在這種情況下這是一個有效但無意義的值?

解決方法

完成此操作的最簡單方法是將input方法放入 while 循環中。使用continue時,你會得到錯誤的輸入,并break退出循環。

當您的輸入可能引發異常時

使用try和except檢測用戶何時輸入無法解析的數據。

while True:
    try:
        # Note: Python 2.x users should use raw_input, the equivalent of 3.x's input
        age = int(input("Please enter your age: "))
    except ValueError:
        print("Sorry, I didn't understand that.")
        #better try again... Return to the start of the loop
        continue
    else:
        #age was successfully parsed!
        #we're ready to exit the loop.
        break
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.")

實現你自己的驗證規則

如果要拒絕 Python 可以成功解析的值,可以添加自己的驗證邏輯。

while True:
    data = input("Please enter a loud message (must be all caps): ")
    if not data.isupper():
        print("Sorry, your response was not loud enough.")
        continue
    else:
        #we're happy with the value given.
        #we're ready to exit the loop.
        break
 
while True:
    data = input("Pick an answer from A to D:")
    if data.lower() not in ('a', 'b', 'c', 'd'):
        print("Not an appropriate choice.")
    else:
        Break

結合異常處理和自定義驗證

以上兩種技術都可以組合成一個循環。

while True:
    try:
        age = int(input("Please enter your age: "))
    except ValueError:
        print("Sorry, I didn't understand that.")
        continue
 
    if age < 0:
        print("Sorry, your response must not be negative.")
        continue
    else:
        #age was successfully parsed, and we're happy with its value.
        #we're ready to exit the loop.
        break
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.")

以上是“如何解決python面對用戶無意義輸入的問題”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武穴市| 兴业县| 姚安县| 盖州市| 高雄县| 尉犁县| 龙游县| 子长县| 镇沅| 闽清县| 马关县| 邯郸市| 郎溪县| 新兴县| 大英县| 都兰县| 务川| 杂多县| 雷山县| 巴青县| 洞口县| 井冈山市| 沂源县| 沁水县| 沙雅县| 瑞昌市| 万全县| 合山市| 肇东市| 论坛| 永修县| 探索| 内乡县| 中江县| 密云县| 聊城市| 阿坝县| 镇坪县| 阿克陶县| 朝阳市| 诏安县|