python base64解码为两千多位数的
时间: 2023-09-28 15:06:43 浏览: 66
Python3内置模块之base64编解码方法详解
不论 Base64 编码的字符串有多长,Python 的 `base64` 模块都可以进行解码。你可以使用相同的代码来解码任意长度的 Base64 编码字符串。
```python
import base64
def base64_decode(encoded_string):
decoded_bytes = base64.b64decode(encoded_string)
decoded_string = decoded_bytes.decode('utf-8')
retu
阅读全文