使用 open 能夠開啟乙個檔案, open 的第乙個引數為檔名和路徑 『my file.txt』,第二個引數為將要以什麼方式開啟它, 比如w為可寫方式. 如果計算機沒有找到 『my file.txt』 這個檔案, w 方式能夠建立乙個新的檔案, 並命名為 my file.txt
例項
text='\tthis is my first test.\n\tthis is the second line.\n\tthis is the third line'
my_file=open('my file.txt','w') #用法: open('檔名','形式'), 其中形式有'w':write;'r':read.
my_file.write(text) #該語句會寫入先前定義好的 text
my_file.close() #關閉檔案
my_file.close()
如果以w方式開啟 之前的內容將會被覆蓋。
file= open('my file.txt','r')
content=file.read()
print(content)
輸出結果:
this is my first test.
this is the second line.
this is the third line
file= open('my file.txt','r')
content=file.readline() # 讀取第一行
print(content)
second_read_time=file.readline() # 讀取第二行
print(second_read_time)
third_read_time=file.readline() # 讀取第二行
print(third_read_time)
輸出
this is my first test.
this is the second line.
this is the third line
file= open('my file.txt','r')
content=file.readlines() # python_list 形式
print(content)
for item in content:
print(item)
使用 file.readlines(), 將每一行的結果儲存在 list 中, 方便以後迭代.
輸出: this is my first test.
this is the second line.
this is the third line
python 基礎 檔案操作
開啟 在python,使用open函式,可以開啟乙個已經存在的檔案,或者建立乙個新檔案 open 檔名,訪問模式 示例如下 f open test.txt w 說明 訪問模式說明r 以唯讀方式開啟檔案。檔案的指標將會放在檔案的開頭。這是預設模式。w開啟乙個檔案只用於寫入。如果該檔案已存在則將其覆蓋。...
python 基礎 檔案操作
開啟 在python,使用open函式,可以開啟乙個已經存在的檔案,或者建立乙個新檔案 open 檔名,訪問模式 示例如下 f open test.txt w 說明 訪問模式說明r 以唯讀方式開啟檔案。檔案的指標將會放在檔案的開頭。這是預設模式。w開啟乙個檔案只用於寫入。如果該檔案已存在則將其覆蓋。...
Python 檔案操作基礎
檔案操作 1,使用檔案的目的 就是把一些資料儲存存放起來,比如程式日誌檔案或者資料 2,在python,使用open函式,可以開啟乙個已經存在的檔案,或者建立乙個新檔案 open 檔名,訪問模式 訪問模式 說明 r 以唯讀方式開啟檔案。檔案的指標將會放在檔案的開頭。這是預設模式。w 開啟乙個檔案只用...