Guest User

Untitled

a guest
Jun 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. * upload ZIP first
  2. * new python file
  3.  
  4. ``` ipynb
  5. import zipfile as zf
  6. files = zf.ZipFile("ZippedFolder.zip", 'r')
  7. ->change the zip name
  8. files.extractall('directory to extract')
  9. -> add new folder and '[foldername]'
  10. files.close()
  11. ```
Add Comment
Please, Sign In to add comment