Python檔案讀取的3種方法及路徑轉義

來源:互聯網
上載者:User

   這篇文章主要介紹了Python檔案讀取的3種方法及路徑轉義,本文分別給出讀取檔案的代碼執行個體,最後講解了路徑轉義的相關知識、小技巧,需要的朋友可以參考下

  1.檔案的讀取和顯示

  方法1:

   代碼如下:

  f=open(r'G:2.txt')

  print f.read()

  f.close()

  方法2:

  代碼如下:

  try:

  t=open(r'G:2.txt')

  print t.read()

  finally:

  if t:

  t.close()

  方法3:

  代碼如下:

  with open(r'g:2.txt') as g:

  for line in g:

  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測試一下是怎樣轉義的:

  代碼如下:

  Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32

  Type "copyright", "credits" or "license()" for more information.

  >>> f='g:a.txt'

  >>> print f

  g:.txt #這裡被轉義成一個特殊符號了。

  >>> f1='g:a.txt'

  >>> print f1

  g:a.txt #沒被轉義

  >>> r'g:a.txt'

  'g:a.txt' #沒被轉義

  >>> 'g:a.txt'

  'g:x07.txt' #這裡將a轉義

  >>> 'g:a.txt'

  'g:a.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.