Created
January 9, 2021 10:05
-
-
Save JayantGoel001/894505c5aeaceac3a6a2f48a87b91dc7 to your computer and use it in GitHub Desktop.
Unzipping a zip folder using zipfile and python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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