Python中的 base64.decodebytes(s)
借助base64.decodebytes(s)
方法,我们可以借助 base64 数据将二进制字符串解码为正常形式。
Syntax : base64.decodebytes(b_string)
Return : Return the decoded 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’