Home >Backend Development >Python Tutorial >Python3读取zip文件信息的方法

Python3读取zip文件信息的方法

WBOY
WBOYOriginal
2016-06-06 11:17:151795browse

本文实例讲述了Python3读取zip文件信息的方法。分享给大家供大家参考。具体实现方法如下:

该程序接受一个字符串,其内容是一个zip文件,需要读取这个zip文件中的信息 

import zipfile
class zip_string(zipfile.ZipFile):
  def __init__(self, data_string):
    zipfile.ZipFile.__init__(self, data_string)
zstr = zip_string('d:/中华十大名帖.zip')
for file_name in zstr.namelist():
  print('File:', file_name)

希望本文所述对大家的Python3程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn