python解压zip文件命令
时间: 2023-11-10 16:53:00 浏览: 123
Python解压缩软件
Python解压zip文件的命令是使用zipfile模块。首先,您需要导入zipfile模块。然后,使用ZipFile函数打开zip文件,并使用extractall方法解压文件到指定目录。
```python
import zipfile
def unzip_file(zip_path, extract_path):
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
zip_ref.extractall(extract_path)
# 使用示例:
unzip_file('example.zip', 'extract_folder')
```
阅读全文