Skip to content

Instantly share code, notes, and snippets.

@JayantGoel001
Created January 9, 2021 10:05
Show Gist options
  • Save JayantGoel001/894505c5aeaceac3a6a2f48a87b91dc7 to your computer and use it in GitHub Desktop.
Save JayantGoel001/894505c5aeaceac3a6a2f48a87b91dc7 to your computer and use it in GitHub Desktop.
Unzipping a zip folder using zipfile and python
import zipfile as z
filename = input()
print("Starting Unzip of Folder.")
files = z.ZipFile(filename)
files.extractall()
print("Unzip Files!!!")
files.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment