You've already forked Curso-lenguaje-python
Restructure content and add notes from HolaMundo
Signed-off-by: Manuel Vergara <manuel@vergaracarmona.es>
This commit is contained in:
13
python-total/dia_09/07_modulo_descomprimir_zipfile.py
Normal file
13
python-total/dia_09/07_modulo_descomprimir_zipfile.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""
|
||||
Módulos comprimir y descomprimir
|
||||
|
||||
zipfile
|
||||
|
||||
"""
|
||||
|
||||
import zipfile
|
||||
|
||||
|
||||
zip_abierto = zipfile.ZipFile('archivo_comprimido.zip', 'r')
|
||||
|
||||
zip_abierto.extractall()
|
||||
Reference in New Issue
Block a user