Python知识分享网 - 专业的Python学习网站 学Python,上Python222
Python自动化管理文件技术指南:读写操作、文件夹管理与压缩功能 PDF 下载
匿名网友发布于:2024-11-11 09:42:59
(侵权举报)
(假如点击没反应,多刷新两次就OK!)

Python自动化管理文件技术指南:读写操作、文件夹管理与压缩功能 PDF 下载 图1

 

资料内容:

 

1、写文件

(1)写入字符串数据

 

# coding:utf-8
# 写入字符串数据

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

 

(2)写入字节数据

使用 write() 方法将字节数据写入文件。 可以使用 encode() 方法将字符串转换为字节数据进行写入。

 

# coding:utf-8
# 写入字节数据

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

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