#建立文字檔案
txt_file =
open
('test.txt'
,'w'
,encoding =
'utf-8'
)#或者使用絕對路徑
#txt_file = open('e:\py-practice\test.txt','w',encoding = 'utf-8')
#文字讀寫操作
#(1) write()方法
txt_file.write(
'測試\n文字'
)#(2) writelines()方法
txt_file.writelines(
['新寫入的話: '
,'測試 '
,'測試2'])
#(3) print()方法
print
('\n測試文字字串'
,file
= txt_file)txt_file.close(
)#read()方法
txt_file =
open
('test.txt'
,'r'
,encoding =
'utf-8'
)#先開啟檔案
contents = txt_file.read(
)print
(contents)
#readline()方法
#讀取內容的每一行
first = txt_file.readline(
)second = txt_file.readline(
)third = txt_file.readline(
)print
(first)
print
(second)
print
(third)
#readlines()方法
contents = txt_file.readlines(
)#迴圈讀入contents = [line.split('\n') for line in txt_file] #直接操作line
print
(contents)
txt_file.close(
)
python基礎複習 讀文字檔案(19)
讀文字檔案 read n 讀n個字元 read 讀整個文字 n 實際個數,讀取實際個數 如果已經讀到檔案尾部了,再度返回空串 遇到 n r r n作為換行標識,並統一轉換為 n作為文字輸入換行符 defwritefile fobj open student.txt wt fobj.write abc...
python怎麼建立文字檔案
python建立文字檔案的方法 首先利用open 函式以只寫模式開啟乙個檔案,如果該檔案不存在則建立 然後利用write 函式向該檔案中寫入指定字串即可。python open 函式以指定模式開啟乙個檔案,建立乙個 file 物件,相關的方法才可以呼叫它進行讀寫。w 模式表示開啟乙個檔案只用於寫入。...
cpp文字檔案(讀檔案,寫檔案)
1 檔案操作必須包含標頭檔案fstream 2 建立流物件 寫檔案可以利用ofstream,或者fstream類 讀檔案 用 ifstream 或者 fstream 3 開啟檔案時候需要指定操作檔案的路徑 以及開啟方式 格式 ofs.open 檔案路徑 開啟方式 4 利用 可以向檔案中寫資料 格式 ...