python把文件转base64
时间: 2023-08-11 08:23:05 浏览: 810
Python简单实现Base64编码和解码的方法
可以使用Python内置的base64模块将文件转换为base64编码。下面是一个示例代码:
```python
import base64
with open('file.txt', 'rb') as file:
encoded = base64.b64encode(file.read())
print(encoded)
```
其中,`file.txt`是需要转换的文件名,`rb`表示以二进制方式读取文件。`base64.b64encode()`方法将文件内容编码为base64格式,`print(encoded)`将编码后的结果输出。
阅读全文