“Python las Zipfile” Code-Antworten

Python las Zipfile

# Extract all contents from zip file
import zipfile
with zipfile.ZipFile('filename', 'r') as myzip: #'r' reads file, 'w' writes file
    myzip.extractall()
# The zipfile will be extracted and content will be available in your working
# directory.
Kwams

Extrahieren Sie die Zip -Datei in Python Zipfile

from zipfile import ZipFile
import zipfile

with ZipFile('test.zip') as myzip:
    with myzip.open('Roughwork/textfile.text') as myfile:
        print(myfile.readlines())Copy Code
Pythonist

Ähnliche Antworten wie “Python las Zipfile”

Fragen ähnlich wie “Python las Zipfile”

Weitere verwandte Antworten zu “Python las Zipfile” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen