unzip command in jupyter lab

86

unzip command in jupyter lab -

import zipfile
with zipfile.ZipFile("file.zip","r") as zip_ref:
    zip_ref.extractall("targetdir")

Comments

Submit
0 Comments