“Python Gzip файл” Ответ

Python GZIP -файл

import gzip
f_in = open('/home/joe/file.txt')
f_out = gzip.open('/home/joe/file.txt.gz', 'wb')
f_out.writelines(f_in)
f_out.close()
f_in.close()
DigitalBorder

Python Gzip файл

import gzip
import shutil
with open('/home/joe/file.txt', 'rb') as f_in:
    with gzip.open('/home/joe/file.txt.gz', 'wb') as f_out:
        shutil.copyfileobj(f_in, f_out)
Awful Ape

Ответы похожие на “Python Gzip файл”

Вопросы похожие на “Python Gzip файл”

Больше похожих ответов на “Python Gzip файл” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования