file zip python terbuka sebagai teks
with ZipFile('spam.zip') as myzip:
with myzip.open('eggs.txt') as myfile:
eggs = io.TextIOWrapper(myfile)
Alive Ape
with ZipFile('spam.zip') as myzip:
with myzip.open('eggs.txt') as myfile:
eggs = io.TextIOWrapper(myfile)