1. 程式人生 > >Python(17)_urllib下的parse的編碼解碼函式

Python(17)_urllib下的parse的編碼解碼函式

import urllib.parse

url = 'https://www.baidu.com/s?wd=董博文&ie=utf-8&tn=97931839_hao_pg'

''' quote url編碼函式'''
ret  =urllib.parse.quote(url)
print(ret)

'''url 解碼函式'''
ret = urllib.parse.unquote(ret)
print(ret)