文章目录
使用 urllib 库
参考: https://www.cnblogs.com/miaoxiaochao/p/13705936.html
str = '你好'
a = urllib.parse.quote(str)
print(a) # %E4%BD%A0%E5%A5%BD
b = urllib.parse.unquote(a) # 你好
标签:BD,编解码,Python,urllib,parse,url,str,unquote,你好
来源: https://blog.csdn.net/weixin_45390999/article/details/121055573