Python編程中的檔案讀寫及相關的檔案對象方法講解

來源:互聯網
上載者:User
python檔案讀寫

python 進行檔案讀寫的內建函數是open或file

file_hander(檔案控制代碼或者叫做對象)= open(filename,mode)

mode:

模式 說明

r 唯讀

r+ 讀寫

w 寫入,先刪除源檔案,在重新寫入,如果檔案沒有則建立

w+ 讀寫,先刪除源檔案,在重新寫入,如果檔案沒有則建立(可以寫入寫出)

讀檔案:

>>> fo = open("/root/a.txt")>>> fo


>>> fo.read()

'hello davehe\ni am emily\nemily emily\n'

>>> fo.close()>>> fo.read()                     #對象已關閉,在讀取就讀不到

Traceback (most recent call last): File "", line 1, in ValueError: I/O operation on closed file


>>> f1 = file("/root/a.txt")         >>> f1.read()

'hello davehe\ni am emily\nemily emily\n'

>>> f1.close()

寫檔案:

root@10.1.6.200:~# ls -l new.txt

ls: cannot access new.txt: No such file or directory

>>> fnew = open("/root/new.txt",'w')  w參數檔案沒有則建立>>> fnew.write('hello \n i am dave')

這時查看檔案資料其實還只是在緩衝區中,沒有真正落到檔案上.

root@10.1.6.200:~# cat new.txt root@10.1.6.200:~#

只要我把檔案關閉,資料會從緩衝區寫到檔案裡

>>> fnew.close()root@10.1.6.200:~# cat new.txt 

hello i am dave

再次使用w參數,檔案會被清空,所以用該參數需要謹慎.

>>> fnew = open("/root/new.txt","w")

root@10.1.6.200:~# cat new.txt root@10.1.6.200:~#

mode使用r+參數:

>>> fnew = open("/root/new.txt",'r+')>>> fnew.read()

'hello dave'

>>> fnew.write('i am dave')>>> fnew.close()

root@10.1.6.200:~# cat new.txt 

hello davei am dave

這次開啟檔案,直接寫入,會發現ooo替換開頭字母,因為上面讀取操作使用了指標在寫就寫在後面.而這次是直接從頭寫入.

>>> fnew = open("/root/new.txt",'r+')>>> fnew.write('ooo')>>> fnew.close()

root@10.1.6.200:~# cat new.txt 

ooolo davei am dave

檔案對象方法
下面檔案對象方法

  • FileObject.close()
  • String=FileObject.readline([size])
  • List = FileObject.readlines([size])
  • String = FileObject.read([size]) read:讀取所有資料
  • FileObject.next()
  • FileObject.write(string)
  • FileObject.writelines(List)
  • FlieObject.seek(位移量,選項)
  • FlieObject.flush() 提交更新
>>> for i in open("/root/a.txt"):  用open可以返回迭代類型的變數,可以逐行讀取資料...   print i... 

hello davehei am emilyemily emily

FileObject.readline: 每次讀取檔案的一行,size是指每行每次讀取size個位元組,直到行的末尾,超出範圍會讀取Null 字元串

>>> f1 = open("/root/a.txt")>>> f1.readline()

'hello davehe\n'

>>> f1.readline()

'i am emily\n'

>>> f1.readline()

'emily emily\n'

>>> f1.readline()''>>> f1.readline()''>>>f1.close()

FileObject.readlines:返回一個列表

>>> f1 = open("/root/a.txt")>>> f1.readlines()

['hello davehe\n', 'i am emily\n', 'emily emily\n']''

FileObject.next:返回當前行,並將檔案指標到下一行,超出範圍會給予警示,停止迭代.

>>> f1 = open("/root/a.txt")>>> f1.next()

'hello davehe\n'

>>> f1.next()

'i am emily\n'

>>> f1.next()

'emily emily\n'

>>> f1.next()

Traceback (most recent call last): File "", line 1, in StopIteration

FileObject.write:write和後面writelines在寫入前會是否清除檔案中原來所有的資料,在重新寫入新的內容,取決於開啟檔案的模式.

FileObject.writelines(List):多行寫,效率比write高,速度更快,少量寫入可以使用write

>>> l = ["python\n","python\n","python\n"]>>> f1 = open('/root/a.txt','a')>>> f1.writelines(l)>>> f1.close()

root@10.1.6.200:~# cat a.txt 

hello davehei am emilyemily emilypythonpythonpython

FlieObject.seek(位移量,選項):可以在檔案中移動檔案指標到不同的位置.

位置的預設值為0,代表從檔案開頭算起(即絕對位移量),1代表從當前位置算起,2代表從檔案末尾算起.

>>> f1 = open('/root/a.txt','r+')>>> f1.read()

'hello davehe\ni am emily\nemily emily\npython\npython\npython\n'

>>> f1.seek(0,0)   指標指到開頭,在讀>>> f1.read()

'hello davehe\ni am emily\nemily emily\npython\npython\npython\n'

>>> f1.read()''>>> f1.seek(0,0)>>> f1.seek(0,2)   指標指到末尾,在讀>>> f1.read()''

下面看個小執行個體,尋找a.txt中emily出現幾次

root@10.1.6.200:~# vim file.py 

#!/usr/bin/env pythonimport ref1 = open('/root/a.txt')count = 0for s in f1.readlines():  li = re.findall("emily",s)  if len(li) > 0:    count = count + len(li)print "this is have %d emily" % count f1.close()

root@10.1.6.200:~# cat a.txt 

hello davehei am emilyemily emily

root@10.1.6.200:~# python file.py 

this is have 3 emily
  • 聯繫我們

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