Answers for "unzip command in jupyter lab"

7

unzip command in jupyter lab

import zipfile
with zipfile.ZipFile("file.zip","r") as zip_ref:
    zip_ref.extractall("targetdir")
Posted by: Guest on May-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language