寫入txt檔案
file
=open(,
'a+'
,encoding=
'utf-8'
)for i in content:
file
.write(i)
file
.close(
)
或者
encoding指定文字的編碼
newline為了解決出現空行的問題
with
open
('11.text'
,'a'
,encoding=
'utf-8'
,newline='')
as f:
f.write(content)
2.寫入csv檔案
import csv
with
open
("lianjia_1.csv"
,"a"
, newline="")
as fi:
writer = csv.writer(fi, dialect=
'excel'
) writer.writerow(data)
3.寫二進位制檔案
file_path為檔案路徑,可以正好在這裡設定檔案的名稱
file_path = 『{}/{}.{}』.format(os.getcwd(), video_title, 『mp4』)
with
open
(file_path,
'wb'
)as f:
f.write(data)
4.讀檔案
f =
open
(path_txt,
'r',encoding=
'gbk'
).read(
)#這樣讀到的是所有的檔案內容
或者
讀取檔案中第一行的檔案內容
with
open
('11.text'
,'r'
,encoding=
'utf-8'
,newline='')
as f:
x= f.readline(
)
或者
with
open
('11.text'
,'r'
,encoding=
'utf-8'
,newline='')
as f:
x= f.read(
)#讀到檔案所有的內容
print
(x)
或者一行一行的讀取檔案
f.readlines()的返回值是乙個列表,每個元素都是檔案中一行的內容。f.readlines()讀取到檔案內容之後,我們可以通過遍歷來得到每一行的內容
with
open
('11.text'
,'r'
,encoding=
'utf-8'
,newline='')
as f:
x= f.readlines(
)print
(type
(x))
for i in
range(0
,len
(x))
:print
(x[i]
)
讀取csv檔案
import pandas as pd
df = pd.read_csv(
'檔名'
,encoding=
'gbk'
)
Python檔案讀寫
今天在看python檔案讀寫操作,發現python file name mode buffering file 函式用於建立乙個file物件,它有乙個別名叫open 可能更形象一些,它們是內建函式。來看看它的引數。它引數都是以字串的形式傳遞的。name是檔案的名字。mode 是開啟的模式,可選的值為...
python檔案讀寫
檔案讀寫模式 模式 描述 r以讀方式開啟檔案,可讀取檔案資訊。w以寫方式開啟檔案,可向檔案寫入資訊。如檔案存在,則清空該檔案,再寫入新內容 a以追加模式開啟檔案 即一開啟檔案,檔案指標自動移到檔案末尾 如果檔案不存在則建立 r 以讀寫方式開啟檔案,可對檔案進行讀和寫操作。w 消除檔案內容,然後以讀寫...
python 讀寫檔案
python讀寫檔案在文字不大的情況可以用正常的 open 然後讀入 readline行讀入 或者整體讀入 read readlines 基本知識 file open path,r 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只...