借助bz2.decompress(s)
方法,我們可以使用將字符串的壓縮字節解壓縮為原始字符串bz2.decompress(s)
方法。
用法:bz2.decompress(string)
返回: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′
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 bz2.decompress(s) in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。