在Python中将gz文件作为字符串读取

问题描述 投票:0回答:1

我一直在寻找一种可以在python中读取gz文件的方法,我做了类似的事情

with gzip.open(filepath) as infile:
    ...

但是,看起来读入数据类似于字节,我不能像for l in infile那样做。有办法解决这个问题吗?

python python-3.x gzip
1个回答
2
投票

mode='rt'(文本模式)传递给gzip.open电话。

从文档(上面链接):

对于二进制模式,mode参数可以是'r', 'rb', 'a', 'ab', 'w', 'wb', 'x''xb'中的任何一个,或者对于文本模式,可以是'rt', 'at', 'wt','xt'。默认值为'rb'

© www.soinside.com 2019 - 2024. All rights reserved.