您好,登錄后才能下訂單哦!
這篇文章主要介紹python異常中else怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
當確定沒有異常后,還需要做一些事情可以使用else語句。
注意:try中沒有異常,else之后的代碼才會被執行。
while True: try: x = int(input('請輸入X:')) y = int(input('請輸入Y:')) value = x / y print('x/y is',value) except Exception as e: # 發生異常時執行 print('不正確的輸入:', e) print('請重新輸入') else: # 未發生異常時執行 break
實例擴展:
def fetcher(obj, index): return obj[index] x = 'spam' try: print fetcher(x, 3) except Exception: print 'hhh' else: print 'has no exception' print fetcher(x, 2) print '---' * 10 try: print fetcher(x, 4) except IndexError: print 'got exception' else: print 'has no exception' print fetcher(x, 2)
運行結果:
m has no exception a ------------------------------ got exception
以上是“python異常中else怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。