Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to extract zip file in jupyter notebook

import zipfile as zf

files = zf.ZipFile("file.zip",'r')
files.extractall()
files.close()
 
PREVIOUS NEXT
Tagged: #extract #zip #file #jupyter #notebook
ADD COMMENT
Topic
Name
8+7 =