Skip to content

Commit a7d44ee

Browse files
committed
comments added
1 parent 6937a6d commit a7d44ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Python/Extract_Contents_of_Zip/script.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from zipfile import ZipFile
22

33
def main():
4-
# Enter the name of zip file
4+
# Enter the path of the zip file
55
zipFile = input("Enter zip file:")
6-
# Enter the path of the file to be extracted
76
print("Extracted file in ZIP to current directory")
87
# create a ZipFile object in READ mode and name it as zipObj
98
with ZipFile(zipFile, 'r') as zipObj:

0 commit comments

Comments
 (0)