如何把字符串转base64编码
时间: 2023-07-05 12:17:51 浏览: 98
把字符数组转化为base64位
您可以使用Python中的base64模块来将字符串转换为base64编码。以下是示例代码:
```python
import base64
string = "Hello, World!" # 待编码的字符串
string_bytes = string.encode('utf-8') # 将字符串转换为字节
encoded_string_bytes = base64.b64encode(string_bytes) # 将字节编码为base64
encoded_string = encoded_string_bytes.decode('utf-8') # 将字节转换为字符串
print(encoded_string) # 输出编码后的字符串
```
输出结果为:
```
SGVsbG8sIFdvcmxkIQ==
```
其中,`SGVsbG8sIFdvcmxkIQ==`就是`Hello, World!`的base64编码。
阅读全文