[python 筆記5]檔案讀寫

來源:互聯網
上載者:User

標籤:python   檔案讀寫   io   

1、定義

  open(filename[,mode[,buffering]])

  其中mode有:

 

2、讀檔案

   1)讀取整個檔案

test=open('input.txt','r')print test.read()



   2)按位元組數讀取

test=open('input.txt','r')print test.read(10)


  3)按行讀取

test=open('input.txt','r')lines=test.readlines()print lines[1]


3、寫檔案

   1)寫入整個檔案

  

 test=open('output.txt','w')test.write('hello,python\nthis is my first test')

  

2)按行寫

test=open('input.txt','r')lines=test.readlines()test.close()lines[1]='This is my second test'test=open('output.txt','w')test.writelines(lines)test.close()


4、關閉檔案

   在操作完成之後記得關閉檔案

   Close()

5、with語句

with open('input.txt','r') as test:print test.read()


  With語句可以開啟檔案(input.txt)並將其賦值給變數(test),之後就可以在代碼塊中對檔案進行操作,在執行完之後檔案會自動關閉。

  在python2.5以後可以直接使用with語句,在2.5之前則需要添加以下語句

  from __future__ import with_statement


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

[python 筆記5]檔案讀寫

聯繫我們

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