urllib.unquote("%E4%BD%A0%E5%A5%BD"
时间: 2024-07-01 22:00:42 浏览: 176
Python urllib.request对象案例解析
5星 · 资源好评率100%
`urllib.unquote()`函数是Python标准库中的一个函数,用于解码URL编码的字符串。当你看到"%E4%BD%A0%E5%A5%BD",它实际上是UTF-8编码下的中文字符"你好"的百分比形式。
下面是如何使用`urllib.unquote()`来解码这个字符串:
```python
from urllib.parse import unquote
encoded_string = "%E4%BD%A0%E5%A5%BD"
decoded_string = unquote(encoded_string)
print(decoded_string) # 输出:你好
```
这段代码导入了`urllib.parse`模块中的`unquote()`函数,然后将编码的字符串解码为原始的中文字符"你好"。
阅读全文