python base64码表解密
时间: 2023-11-16 15:56:14 浏览: 91
Python中的base64模块提供了b64decode()方法来解密base64编码的字符串。使用该方法需要先将base64编码的字符串转换为bytes类型,然后再进行解密。下面是一个简单的示例代码:
```
import base64
# 给定需要解密的字符串
str1 = "Q29kZQ=="
# 将字符串转换为bytes类型
bytes1 = str1.encode()
# 解密
result = base64.b64decode(bytes1)
# 打印解密后的结果
print('解密后的结果: ', result.decode())
```
输出结果为:Code
阅读全文