Friday, February 6, 2026
HomeLanguagesgzip.decompress(s) in Python

gzip.decompress(s) in Python

With the help of gzip.decompress(s) method, we can decompress the compressed bytes of string into original string by using gzip.decompress(s) method.

Syntax : gzip.decompress(string)
Return : Return decompressed string.

Example #1 :
In this example we can see that by using gzip.decompress(s) method, we are able to decompress the compressed string in the byte format of string by using this method.




# import gzip and decompress
import gzip
s = b'This is GFG author, and final year student.'
s = gzip.compress(s)
  
# using gzip.decompress(s) method
t = gzip.decompress(s)
print(t)


Output :

b’This is GFG author, and final year student.’

Example #2 :




# import gzip and compress
import gzip
s = b'GeeksForGeeks@12345678'
s = gzip.compress(s)
  
# using gzip.decompress(s) method
t = gzip.decompress(s)
print(t)


Output :

b’GeeksForGeeks@12345678′

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11986 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12075 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6931 POSTS0 COMMENTS