📜  Python中的 base64.encodebytes(s)

📅  最后修改于: 2022-05-13 01:55:25.384000             🧑  作者: Mango

Python中的 base64.encodebytes(s)

借助base64.encodebytes(s)方法,我们可以将使用 base64 编码数据的字符串编码为二进制形式。

示例 #1:
在这个例子中我们可以看到,通过使用base64.encodebytes(s)方法,我们可以使用这个方法得到可以是二进制形式的编码字符串。

# import base64
from base64 import encodebytes
  
s = b'GeeksForGeeks'
# Using base64.encodebytes(s) method
gfg = encodebytes(s)
  
print(gfg)

输出 :

示例 #2:

# import base64
from base64 import encodebytes
  
s = b'I love python'
# Using base64.encodebytes(s) method
gfg = encodebytes(s)
  
print(gfg)

输出 :