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查看zip包中的文件及大小
最后更新 2018-05-17 08:00 星期四 所属:
Python教程 浏览:350