文件迭代器 通过同一界面迭代不同文件类型( plain , zip或gzip )内容的工具。 file-iterator的动机是对文件内容的可访问性和代码的可读性,以及提供一种将处理程序(函数)链接到常见文件读取事件(开始/停止/结束文件读取)的方式。 正在安装 文件迭代器位于PyPI上,因此您需要做的是: pip install file-iterator 测验 赶紧跑: pytest tests/ 概述-教程 # Let's say we have the same text in 3 file formats. name_txt = 'file.txt' name_gzip = 'file.gz' name_zip = 'file.zip' # In Python, we could read the text file just like this: f = open ( n