51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

记Python3的对中文进行URL编码解码

前言

python3编码和python2有所不同,故此记录.

编码解码

from urllib.parse import quote,unquote

text = "丽江"
print(quote(text,'utf-8'))


str = "%E6%95%B0%E6%8D%AE%E6%8C%96%E6%8E%98"

`print(unquote(str,'utf-8'))
`

赞(0)
未经允许不得转载:工具盒子 » 记Python3的对中文进行URL编码解码