在Python中,可以使用urllib.parse.unquote
函数将URL字符串转换为普通字符串。这个函数可以将URL编码的特殊字符(如%20
)转换为对应的字符(如空格)。
以下是一个示例代码:
import urllib.parse
url_string = "https%3A//www.example.com/path%20with%20spaces"
decoded_string = urllib.parse.unquote(url_string)
print(decoded_string)
输出:
https://www.example.com/path with spaces
在这个例子中,%3A
被转换为冒号,%2F
被转换为斜杠,%20
被转换为空格。
领取专属 10元无门槛券
手把手带您无忧上云