借助base64.decodebytes(s)
方法,我们可以借助base64数据将二进制字符串解码为正常形式。
用法: base64.decodebytes(b_string)
返回:返回解码后的字符串。
范例1:
在这个例子中,我们可以通过使用base64.decodebytes(s)
方法,我们可以使用此方法获得二进制形式的解码字符串。
# import base64
from base64 import encodebytes
from base64 import decodebytes
s = b'GeeksForGeeks'
s = encodebytes(s)
# Using base64.decodebytes(s) method
gfg = decodebytes(s)
print(gfg)
输出:
b’GeeksForGeeks’
范例2:
# import base64
from base64 import encodebytes
from base64 import decodebytes
s = b'Hello World'
s = encodebytes(s)
# Using base64.decodebytes(s) method
gfg = decodebytes(s)
print(gfg)
输出:
b’Hello World’
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 base64.decodebytes(s) in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。