编程语言
首页 > 编程语言> > Python URL编解码

Python URL编解码

作者:互联网

encodeURIComponent

from urllib import parse

#这个是js的结果
# encodeURIComponent('人生苦短')
# "%E4%BA%BA%E7%94%9F%E8%8B%A6%E7%9F%AD"
sentence='%E4%B8%AD%E5%9B%BD'
print(parse.unquote(sentence))       #解码输出:人生苦短

标签:编解码,sentence,Python,9F%,E7%,parse,URL,E4%,苦短
来源: https://blog.csdn.net/weixin_46496659/article/details/122574979