Python中的 bz2.decompress(s)
借助bz2.decompress(s)
方法,我们可以使用bz2.decompress(s)
方法将字符串的压缩字节解压成原始字符串。
Syntax : bz2.decompress(string)
Return : Return decompressed string.
示例 #1:
在这个例子中我们可以看到,通过使用bz2.decompress(s)
方法,我们可以使用该方法将压缩后的字符串以字符串的字节格式解压。
# import bz2 and decompress
import bz2
s = b'This is GFG author, and final year student.'
s = bz2.compress(s)
# using bz2.decompress(s) method
t = bz2.decompress(s)
print(t)
输出 :
b’This is GFG author, and final year student.’
示例 #2:
# import bz2 and compress
import bz2
s = b'GeeksForGeeks@12345678'
s = bz2.compress(s)
# using bz2.decompress(s) method
t = bz2.decompress(s)
print(t)
输出 :
b’GeeksForGeeks@12345678′