python解码base64
时间: 2023-07-22 13:09:14 浏览: 102
base64解码
在Python中解码Base64可以使用`base64`模块的`b64decode()`函数。下面是一个示例代码:
```python
import base64
encoded_string = 'SGVsbG8gd29ybGQ='
decoded_string = base64.b64decode(encoded_string).decode('utf-8')
print(decoded_string)
```
运行这段代码,将输出解码后的字符串:"Hello world!"。在示例中,我们首先导入了`base64`模块,然后定义了一个经过Base64编码的字符串`encoded_string`。接下来,使用`b64decode()`函数对该字符串进行解码,并使用`decode()`方法将其转换为UTF-8编码的字符串。最后,我们打印出解码后的字符串。
请注意,在解码时需要指定正确的字符编码,通常是UTF-8。如果Base64编码的字符串中包含非UTF-8字符,则需要相应地更改解码时的字符编码。
阅读全文