“unzip_data python” Código de respuesta

descomprimir en pitón

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

Respuestas similares a “unzip_data python”

Preguntas similares a “unzip_data python”

Más respuestas relacionadas con “unzip_data python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código