第一次碰到try-except(core python programming 2nd Edition 3.6)

來源:互聯網
上載者:User

標籤:

 1 # coding: utf-8 # 使用Windows系統,首行‘#!/usr/bin/env Pyton‘無用,全部改為‘# coding: utf-8‘
2 3 ‘readtextfile.py -- read and display text file‘ 4 5 # get filename 6 fname = raw_input(‘Enter filename: ‘) 7 print 8 9 # attempt to open file for reading10 try: 11 fobj = open(fname, ‘r‘) # 嘗試開啟fname12 except IOError, e: # 捕獲到的IOError錯誤的詳細原因會被放置在對象e中,然後運行該異常的except代碼塊(也可以寫成‘except IOError as e:‘)13 print "*** file open error:", e # 列印異常資訊14 else: # 如果try沒有錯誤,執行else語句15 # display contents to the screen16 for eachLine in fobj: 17 print eachLine, # 逗號是為了抵制print語句自動產生的行結束符(fname裡面本身已有行結束符,如果不加逗號,列印出來的內容之間會多空一行)18 fobj.close()
與Python異常相關的關鍵字:
關鍵字          關鍵字說明
raise           拋出/引發異常
try/except      捕獲異常並處理
pass            忽略異常
as              定義異常執行個體(except IOError as e)
finally         無論是否出現異常,都執行的代碼
else            如果try中的語句沒有引發異常,則執行else中的語句

第一次碰到try-except(core python programming 2nd Edition 3.6)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.