Open In App

bz2.compress(s) in Python

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
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.




# 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 :




# 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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads