python解压gz文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python解压gz文件相关的知识,希望对你有一定的参考价值。

参考技术A importgzip

importos

defun_gz(file_name):

 """ungz zip file"""

 f_name =file_name.replace(".gz", "")

 #获取文件的名称,去掉

 g_file =gzip.GzipFile(file_name)

 #创建gzip对象

 open(f_name, "w+").write(g_file.read())

 #gzip对象用read()打开后,写入open()建立的文件里。

 g_file.close()

 #关闭gzip对象

以上是关于python解压gz文件的主要内容,如果未能解决你的问题,请参考以下文章

用python解压图片并打印代码

python tar.gz怎么安装

python 3.2版本 解压rar/zip到指定目录

python3压缩和解压文件总结(python经典编程案例)

python3压缩和解压文件总结(python经典编程案例)

python-29 python解压压缩包的几种方法