Python gzip庫函數使用方法及實例

<pre name="code" class="python">解壓gzip文件示例: import gzip f = gzip.open('file.txt.gz', 'rb') file_content = f.read() f.close() 建立gzip文件: import gzip content = "Lots of content here" f = gzip.open('fil
相關文章
相關標籤/搜索