首頁 >後端開發 >Python教學 >python入門 讀寫文件

python入門 讀寫文件

巴扎黑
巴扎黑原創
2016-12-07 11:19:581168瀏覽

1.開啟文件,讀所有內容

file_object = open('thefile.txt')
try:
     all_the_text = file_object.read( )
finally:
🠎 .讀取固定位元組

file_object = open('abinfile', 'rb')

try:

    while True:

         chunk          break

         do_something_with(chunk)
finally:
     file_object .close( )

 

3.讀取檔案一行

f = open("D:\test\BlueSoftSetup.log","r")

try:

🠎       readline()

        if line:

            print(line)

     

 

    f.close();

 

4.寫檔案

寫文字檔案

output = open('data', 'w')

 

寫二進位檔案

output = open('data', 'wb')

 

追加寫入檔案

output = open('data', 'w+')

追加寫檔案

output = open('data', 'w+')

 


寫入資料
file_object = open('thefile.txt', 'w')

file_object.write(all_the_text)

file_object.close( )


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn