python檔案_讀取

來源:互聯網
上載者:User

標籤:

1.檔案的讀取和顯示

方法1:

1 f=open(r‘G:\2.txt‘)2 print f.read()3 f.close()

方法2:

 

1 try:2     t=open(r‘G:\2.txt‘)3     print t.read()4 finally:5     if t:6        t.close()

 

方法3:

1 with open(r‘g:\2.txt‘) as g:2     for line in g:3         print line

python雖然每次開啟檔案都要關閉,但是可能會由於異常導致未關閉,因此我們最好是手動關閉,方法二通過異常處理來進行,方法三通過with來自動調用close方法,最簡便。

這裡open的地址需要注意,如果我們寫成open(‘g:\2.txt‘,‘r‘)運行時會報錯:IOError: [Errno 22] invalid mode (‘r‘) or filename: ‘g:\x02.txt‘。這裡是由於路徑被轉義了,因此可以用‘/‘代替‘\‘:f=open(‘g:/2.txt‘,‘r‘)或者加上r‘path‘:f=open(r‘g:\2.txt‘,‘r‘)就可以了。

這裡通過python內建的ide-GUI測試一下是怎樣轉義的:

 1 Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32 2 Type "copyright", "credits" or "license()" for more information. 3 >>> f=‘g:\a.txt‘   4 >>> print f 5 g:.txt  #這裡被轉義成一個特殊符號了。 6 >>> f1=‘g:\\a.txt‘ 7 >>> print f1 8 g:\a.txt  #沒被轉義 9 >>> r‘g:\a.txt‘10 ‘g:\\a.txt‘  #沒被轉義11 >>> ‘g:\a.txt‘12 ‘g:\x07.txt‘  #這裡將a轉義13 >>> ‘g:\\a.txt‘14 ‘g:\\a.txt‘15 >>> 

 

 

 

 

python檔案_讀取

相關文章

聯繫我們

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