base64解码python
时间: 2023-11-24 17:53:25 浏览: 76
以下是使用Python进行base64解码的方法:
```python
import base64
# 将需要解码的字符串赋值给变量
encoded_str = 'SGVsbG8gV29ybGQh'
# 使用base64解码函数进行解码
decoded_str = base64.b64decode(encoded_str)
# 输出解码后的字符串
print(decoded_str.decode('utf-8')) # 输出:Hello World!
```
相关问题
base64解码Python
以下是使用Python进行base64解码的方法:
```python
import base64
# 将需要解码的字符串赋值给变量
encoded_str = 'SGVsbG8gV29ybGQh'
# 使用base64解码函数进行解码
decoded_str = base64.b64decode(encoded_str)
# 将解码后的二进制数据转换为字符串并输出
print(decoded_str.decode('utf-8')) # 输出:Hello World!
```
base64 解码Python
base64解码是将base64编码后的数据恢复为原始数据的过程。在Python中,使用base64模块的b64decode函数可以进行base64解码。解码时,可以接收字符串或字节类型的输入。
下面是一个示例代码:
import base64
encoded_data = 'QWx3YXlzQmV0YQ=='
decoded_data = base64.b64decode(encoded_data)
解码后的数据为字节类型,如果需要将其转换为字符串类型,可以使用decode方法进行转换:
decoded_data_str = decoded_data.decode('utf-8')
解码后的数据为'AlwaysBeta'。
阅读全文