import zipfile z = zipfile.ZipFile('final.zip', 'w', zipfile.ZIP_DEFLATED) z.write('file1.txt') z.write('file2.txt') z.close()