标签: python python-2.7 python-3.x gzip unzip
我试图用 gzip 解压缩.gz文件。一切正常,但对于一些.gz文件,我收到此错误消息:
IOError: Not a gzipped file
这是我遇到问题的代码的一部分:
inF = gzip.GzipFile('C:/Users/MyUserName/ftvenFiles/file.gz', 'rb') s = inF.read()
帮助?