0

How can I get a list with of all filenames of an archive in Python3? The archive is a variable of type ZipFile.

1 Answers1

0

Simple , you call zip.namelist() and iterate over each entry.