Python3 bz — bzip 压缩
在Python中,可以使用内置的bz2
模块来进行bzip2压缩。以下是一个简单的例子,展示如何将文本文件压缩为.bz2
格式:
import bz2
# 要压缩的文件名
filename = 'example.txt'
# 读取文件内容
with open(filename, 'rb') as file:
content = file.read()
# 压缩内容
compressed_content = bz2.compress(content)
# 将压缩后的内容写入新文件
compressed_filename = f'{filename}.bz2'
with open(compressed_filename, 'wb') as compressed_file:
compressed_file.write(compressed_content)
这段代码首先读取了一个文本文件,然后使用bz2.compress()
方法进行压缩,最后将压缩后的内容写入一个新的.bz2
文件。
评论已关闭