当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python bz2.compress(s)用法及代码示例


借助bz2.compress(s)方法,我们可以使用压缩字符串的字节bz2.compress(s)方法。

用法: bz2.compress(string)
返回:Return compressed string.

范例1:
在这个例子中,我们可以通过使用bz2.compress(s)方法,我们可以使用此方法以字节格式压缩字符串。

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

输出:

43
77



范例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))

输出:

22
60


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 bz2.compress(s) in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。