如何在Python 3中使用字符串类型对变量进行base64编码/解码?

时间:2013-06-08 15:47:35

标签: python dictionary base64 decode encode

它给出了一个错误,即编码的行必须是字节而不是str / dict

我知道在文本解决之前添加“b”并打印编码的东西。

import base64
s = base64.b64encode(b'12345')
print(s)
>>b'MTIzNDU='

但是如何编码变量呢? 比如

import base64
s = "12345"
s2 = base64.b64encode(s)
print(s2)

添加和不添加b会导致错误。我不明白

我也在尝试使用base64对字典进行编码/解码。

1 个答案:

答案 0 :(得分:8)

您需要对unicode字符串进行编码。如果它只是普通字符,则可以使用ASCII。如果它可能包含其他字符,或者只是为了一般安全,您可能需要utf-8

>>> import base64
>>> s = "12345"
>>> s2 = base64.b64encode(s)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File ". . . /lib/python3.3/base64.py", line 58, in b64encode
    raise TypeError("expected bytes, not %s" % s.__class__.__name__)
TypeError: expected bytes, not str
>>> s2 = base64.b64encode(s.encode('ascii'))
>>> print(s2)
b'MTIzNDU='
>>>