Open In App

gzip.compress(s) in Python

Last Updated : 23 Mar, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of gzip.compress(s) method, we can get compress the bytes of string by using gzip.compress(s) method.
Syntax : gzip.compress(string) Return : Return compressed string.
Example #1 : In this example we can see that by using gzip.compress(s) method, we are able to compress the string in the byte format by using this method. Python3 1=1
# import gzip and compress
import gzip

s = b'This is GFG author, and final year student.'
print(len(s))

# using gzip.compress(s) method
t = gzip.compress(s)
print(len(t))
Output :
43 61
Example #2 : Python3 1=1
# import gzip and compress
import gzip

s = b'GeeksForGeeks@12345678'
print(len(s))

# using gzip.compress(s) method
t = gzip.compress(s)
print(len(t))
Output :
22 39

Next Article
Article Tags :
Practice Tags :

Similar Reads