📜  jupyter 上传文件夹 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:47.029000             🧑  作者: Mango

代码示例1
import zipfile as zf
files = zf.ZipFile("ZippedFolder.zip", 'r')
files.extractall('directory to extract')
files.close()