You can download this code by clicking the button below.
This code is now available for download.
Compress two files into one zip file.
Technology Stack : os, zipfile
Code Type : File processing
Code Difficulty : Intermediate
def zip_file(file1, file2, output):
import os
import zipfile
with zipfile.ZipFile(output, 'w') as zipf:
zipf.write(file1, os.path.basename(file1))
zipf.write(file2, os.path.basename(file2))
return True