91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何解決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

呼伦贝尔市| 霞浦县| 水城县| 静乐县| 游戏| 瓮安县| 武城县| 许昌县| 定襄县| 平顶山市| 榆树市| 南丹县| 昌邑市| 莱西市| 武安市| 福鼎市| 麦盖提县| 吕梁市| 万宁市| 都安| 新民市| 奉化市| 华安县| 茌平县| 汝南县| 翁源县| 团风县| 乐陵市| 方正县| 屯留县| 古浪县| 山阳县| 全州县| 婺源县| 辽宁省| 吉木萨尔县| 巴青县| 海林市| 延安市| 湖口县| 察隅县|