Advertisement
P22DX

zlib.python

Dec 22nd, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import zlib
  2. inp = raw_input('File : ')
  3. f = open(inp, 'rb')
  4. decompressed_data = zlib.decompress(f.read())
  5. print(decompressed_data)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement