讀寫檔案 3

2021-09-29 05:22:33 字數 808 閱讀 9347

使用file.read()能夠讀取到文字的所有內容.

file= open('test.txt','r') 

content=file.read()

print(content)

如果想在文字中一行行的讀取文字, 可以使用file.readline(),file.readline()讀取的內容和你使用的次數有關, 使用第二次的時候, 讀取到的是文字的第二行, 並可以以此類推:

file= open('test.txt','r') 

content=file.readline() # 讀取第一行

print(content)

second_read_time=file.readline() # 讀取第二行

print(second_read_time)

如果想要讀取所有行, 並可以使用像for一樣的迭代器迭代這些行結果, 我們可以使用file.readlines(), 將每一行的結果儲存在list中, 方便以後迭代.

file= open('test.txt','r') 

content=file.readlines() # python_list 形式

print(content)

# 之後如果使用 for 來迭代輸出:

for item in content:

print(item)

Python檔案讀寫筆記 3

一.檔案 被持久化的字串,被持久化儲存在磁碟上的字串。二.讀操作 將檔案中的字串載入進記憶體。三.寫操作 將字串寫入到磁碟中的操作。四.open函式 用於讀寫檔案。eg print help open 引數 file 檔名 注意路徑 絕對路徑r c test hello.txt 相對路徑 next ...

python3讀寫檔案

一 系統預設的編碼格式為utf8 二 讀寫檔案時通過引數encoding utf8 指定編碼格式,否則檔案在本地開啟時會亂碼 與系統預設編碼不符,參考第1條 三 例項 設定編碼格式為utf8,本地開啟和程式讀取都展示正常,無亂碼 text 我是xx,我愛python f open a.txt w e...

Python3基礎 讀寫檔案

檔案是作業系統管理和儲存資料的一種方式。python內建了 open 函式來開啟檔案,並建立乙個檔案物件。一 開啟檔案 open 函式 1 open 函式基本格式 myfile open filename,mode 意思是 myfile 為引用檔案物件的變數 filename 為檔名,可以是檔案的絕...