在Python3中,可以使用urllib.parse.unquote函數進行URL解碼(urldecode)。下面是一個簡單的示例:
from urllib.parse import unquote
url = 'https%3A%2F%2Fwww.example.com%2Fsearch%3Fq%3Dpython%26page%3D1'
decoded_url = unquote(url)
print(decoded_url)
輸出結果:
https://www.example.com/search?q=python&page=1
在上面的示例中,我們首先導入了unquote
函數,然后傳入需要解碼的URL字符串。unquote
函數會將URL字符串中的特殊字符(如%3A
)解碼為其原始的ASCII字符(如:
),返回解碼后的URL字符串。
請注意,在Python 2.x中,urldecode
函數被稱為unquote
函數,使用方法與上述示例相同。