我一直在寻找一种可以在python中读取gz文件的方法,我做了类似的事情
with gzip.open(filepath) as infile:
...
但是,看起来读入数据类似于字节,我不能像for l in infile
那样做。有办法解决这个问题吗?
将mode='rt'
(文本模式)传递给gzip.open
电话。
从文档(上面链接):
对于二进制模式,mode参数可以是
'r', 'rb', 'a', 'ab', 'w', 'wb', 'x'
或'xb'
中的任何一个,或者对于文本模式,可以是'rt', 'at', 'wt',
或'xt'
。默认值为'rb'
。