“unzip_data python” Ответ

Расписки в питоне

import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
    zip_ref.extractall(directory_to_extract_to)
Happy Herring

unzip_data python

import zipfile

path = '/path_to_your/zip_file'
zip_ref = zipfile.ZipFile(path,'r')
zip_ref.extractall(directory_to_extract) # or leave blank to extract to current directory
The Legendary Ctrl+C

Ответы похожие на “unzip_data python”

Вопросы похожие на “unzip_data python”

Больше похожих ответов на “unzip_data python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования