python 解压zip
时间: 2023-10-19 10:29:42 浏览: 270
你可以使用Python的zipfile模块来解压zip文件。以下是一个简单的示例代码:
```python
import zipfile
def unzip_file(zip_path, extract_path):
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
zip_ref.extractall(extract_path)
# 调用示例:
zip_path = 'path/to/your/file.zip'
extract_path = 'path/to/extract/folder'
unzip_file(zip_path, extract_path)
```
在上面的代码中,你需要将 `zip_path` 替换为你的zip文件的路径,将 `extract_path` 替换为你想要解压到的文件夹路径。然后调用 `unzip_file` 函数即可完成解压。
阅读全文