python 实现上诉解密
时间: 2023-07-07 11:28:08 浏览: 97
可以使用Python中的`base64`和`urllib`库来实现对该字符串的解码。具体的代码如下:
```python
import base64
import urllib.parse
encoded_string = "SaHyW9ZTR5TORtNoKR0Qzw%3D%3D"
# URL解码
decoded_string = urllib.parse.unquote(encoded_string)
# Base64解码
decoded_bytes = base64.b64decode(decoded_string)
plaintext = decoded_bytes.decode()
print(plaintext) # 输出 "829379171"
```
在这个代码中,首先使用`urllib.parse.unquote`方法对URL进行解码,然后使用`base64.b64decode`方法对解码后的字符串进行Base64解码,最后使用`decode`方法将解码后的字节数组转换为字符串。
阅读全文