Python知識分享網(wǎng) - 專業(yè)的Python學(xué)習(xí)網(wǎng)站 學(xué)Python,上Python222
Python自動化管理文件技術(shù)指南:讀寫操作、文件夾管理與壓縮功能 PDF 下載
匿名網(wǎng)友發(fā)布于:2024-11-11 09:42:59
(侵權(quán)舉報)
(假如點擊沒反應(yīng),多刷新兩次就OK!)

Python自動化管理文件技術(shù)指南:讀寫操作、文件夾管理與壓縮功能 PDF 下載 圖1

 

資料內(nèi)容:

 

1、寫文件

(1)寫入字符串?dāng)?shù)據(jù)

 

# coding:utf-8
# 寫入字符串?dāng)?shù)據(jù)

with open("write_example.txt", "w", encoding='utf-8') as file:
 ? ?file.write("Hello, World!\n")
 ? ?file.write("This is a new line.")

 

(2)寫入字節(jié)數(shù)據(jù)

使用 write() 方法將字節(jié)數(shù)據(jù)寫入文件。 可以使用 encode() 方法將字符串轉(zhuǎn)換為字節(jié)數(shù)據(jù)進行寫入。

 

# coding:utf-8
# 寫入字節(jié)數(shù)據(jù)

with open("write_example1.txt", "wb") as file:
 ? ?content = "Hello, World!\n"

 ? ?file.write(content.encode("utf-8"))