当前位置:脚本大全 > > 正文

pythonzipfile的用法(对Python之gzip文件读写的方法详解)

时间:2022-03-30 09:14:08类别:脚本大全

pythonzipfile的用法

对Python之gzip文件读写的方法详解

gzip文件读写的时候需要用到Python的gzip模块。

具体使用如下:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • # -*- coding: utf-8 -*-
  • import gzip
  •  
  • # 写文件
  • f_out = gzip.open("xxx.gz", "wb")
  •  
  • # 读文件
  • # f_in = gzip.open("xxx.gz", "rb")
  • for line in open("yyy.txt", "rb"):
  •   f_out.write(line)
  •  
  • f_out.close()
  • 除了open文件的时候和TXT文件有些区别,在用的时候没有其他区别;也可以用with简化程序:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • # -*- coding: utf-8 -*-
  • import gzip
  •  
  • # 写文件
  • with gzip.open("xxx.gz", "wb") as f_out:
  •  
  • for line in open("yyy.txt", "rb"):
  •   f_out.write(line)
  •  
  • # f_out.close()就不需要了
  • 以上这篇对Python之gzip文件读写的方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。

    原文链接:https://blog.csdn.net/kanon122500000/article/details/61198902

    标签:
    上一篇下一篇

    猜您喜欢

    热门推荐