jupyter notebook如何上传文件夹

  1. 在jupyter notebook默认目录上传文件夹的压缩包;
  2. 新建python文件,输入以下代码,就可以解压缩压缩包到默认目录下
import zipfile as zf
import os

files = zf.ZipFile('SpotFakePlus.zip', 'r')
files.extractall(os.getcwd())
files.close()

你可能感兴趣的:(jupyter,jupyter,ide,python)