飄逸的python - 使用traceback擷取詳細的異常資訊

來源:互聯網
上載者:User
try:    1/0except Exception,e:    print e


輸出結果是integer division or modulo by zero,只知道是報了這個錯,但是卻不知道在哪個檔案哪個函數哪一行報的錯。 下面使用traceback模組

import tracebacktry:    1/0except Exception,e:    traceback.print_exc()

輸出結果是 Traceback (most recent call last): File "test_traceback.py", line 3, in <module> 1/0 ZeroDivisionError: integer division or modulo by zero 這樣非常直觀有利於調試。
traceback.print_exc()跟traceback.format_exc()有什麼區別呢。 format_exc()返回字串,print_exc()則直接給列印出來。 即traceback.print_exc()與print traceback.format_exc()效果是一樣的。 print_exc()還可以接受file參數直接寫入到一個檔案。比如 traceback.print_exc(file=open('tb.txt','w+')) 寫入到tb.txt檔案去。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.