Open In App

bz2.compress(s) in Python

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

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

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

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

# using bz2.compress(s) method
t = bz2.compress(s)
print(len(t))
Output :
22 60

Next Article
Article Tags :
Practice Tags :

Similar Reads