我正在使用Python 3.4。 写作
csv_f = tarfile.open('C:\\Users\\somefile.gz')
工作正常但是这个
csv_f = tarfile.extract('C:\\Users\\somefile.gz')
导致回复
AttributeError: 'module' object has no attribute 'extract'
似乎没有在库中找到提取和提取函数。怎么会这样?
答案 0 :(得分:0)
因为它们是tarfile.open()
返回的对象的方法,而不是模块本身的函数。