「python」zipファイルを読むサンプルコード

pythonコード
#!/usr/bin/env python
import zipfile
z = zipfile.ZipFile(“test.zip","r")
for filename in z.namelist():
print 'File:’,filename,
bytes = z.read(filename)
print 'has’,len(bytes),’bytes’

Python

Posted by arkgame