Zip file report
- Using the zipfile module in the standard library, read a Zip
archive.
- Display a report of the contents of the archive.
- For each item in the archive, display (1) the file name, (2)
the original size, and (3) the compressed size.
What you will learn:
- How to import a Python module.
- How to use several features from the zipfile module.
- How to use (call methods on) objects created by a module from
the standard library.
Additional information:
For examples of the use of the zipfile module, see: