Python - url 中中文编解码

文章目录


import urllib 

url = '視覺'
ret = urllib.parse.quote(url)
print(ret)  # %E8%A6%96%E8%A6%BA

# https://zh-yue.wikipedia.org/wiki/%E8%A6%96%E8%A6%BA

zh = urllib.parse.unquote(ret)
print(zh)  # 視覺

你可能感兴趣的:(Python,python,开发语言)