Answers for "how to unzip a fil with python"

4

unzip in python

import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
    zip_ref.extractall(directory_to_extract_to)
Posted by: Guest on November-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language