python base64_encode()
时间: 2023-08-16 17:07:50 浏览: 143
Base64.encodeBase64
base64_encode() 是 Python 中用于将数据进行 Base64 编码的函数。它将输入的数据转换为一串由字符组成的编码字符串,以便在网络传输或存储时使用。
下面是一个示例,展示如何使用 base64_encode() 函数对字符串进行编码:
```python
import base64
data = "Hello, World!"
encoded_data = base64.b64encode(data.encode('utf-8')).decode('utf-8')
print(encoded_data)
```
输出结果为:
```
SGVsbG8sIFdvcmxkIQ==
```
在这个示例中,我们使用 `base64.b64encode()` 函数对字符串进行编码。首先,我们将字符串转换为字节流,通过 `encode('utf-8')` 方法实现。然后,使用 `b64encode()` 函数对字节流进行 Base64 编码。最后,通过 `decode('utf-8')` 方法将编码后的字节流转换回字符串形式。
注意:`base64_encode()` 函数返回的是一个字节流,因此需要通过 `decode()` 方法将其转换为字符串才能打印或进行其他操作。
阅读全文