📜  如何在 jupyter notebook 中提取 zip 文件 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:37.508000             🧑  作者: Mango
代码示例1
import zipfile as zf
files = zf.ZipFile("file.zip",'r')
files.extractall()
files.close()