Python學習筆記七(File&Open)

來源:互聯網
上載者:User

這裡主要想說的是File()和Open()這兩個函數的主要用途,因為自己在用的時候就迷糊,到底這倆個有什麼區別
一般我們都知道操作檔案的基本根式是
with open("filePath","r") as fobj
    for line in fobj
      .......
檔案的操作和很多程式設計語言一樣,一定要記得Close開啟的檔案對象。其中檔案的開啟檔案也有r(讀)w(截斷寫)a(追加方式),常用的就這幾種,還有些特殊的就查協助文檔吧。這些都好理解,最讓我迷惑的是File()和Open()這兩個有什麼用,如果是一樣的,幹嘛不統一呢。先看英文吧

>不多介紹先看看英文資料
兩種都是build-in function
file( filename[, mode[, bufsize]])
Constructor function for the file type, described further in section 3.9, ``File Objects''. The constructor's arguments are the same as those of the open() built-in function described below.
When opening a file, it's preferable to use open() instead of invoking this constructor directly. file is more suited to type testing (for example, writing "isinstance(f, file)").
open( filename[, mode[, bufsize]])
Open a file, returning an object of the file type described in section 3.9, ``File Objects''. If the file cannot be opened, IOError is raised. When opening a file, it's preferable to use open() instead of invoking the file constructor directly.....

可以這麼來解釋
file是file類型的建構函式,雖然也可以開啟檔案,但更提倡使用open的方式來使用。理論上兩者應該沒有本質的區別

相關文章

聯繫我們

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