World's Best AI Learning Platform with profoundly Demanding Certification Programs
Designed by IITians, only for AI Learners.
Designed by IITians, only for AI Learners.
New to InsideAIML? Create an account
Employer? Create an account
>>> from zipfile import ZipFile >>> import os >>> os.chdir("path") # use zip file path >>> file="Demo.zip" # File name >>> with ZipFile(file,'r') as zip: # ZipFile constructor; READ mode; ZipFile object named as zip zip.printdir() # To print contents of the archive print("Extracting files") zip.extractall() # Extract contents of the ZIP to the current working directory print("Finished extracting")
output
File Name Modified Size Demo.csv 2020-12-09 06:18:04 320086 Demo2.csv 2020-12-09 06:18:04 481510 Extracting files Finished extracting