url编解码

2021-03-28 16:24

阅读:579

标签:参数   http   操作   bsp   lib   编码   没有   列表   www   

代码

from urllib.parse import quote,unquote,urlencode


print(quote(https://www.cnblogs.com/?a=bc&d=f))
print(urlencode({a:b,b:c}))

print(unquote(https%3A//www.cnblogs.com/%3Fa%3Dbc%26d%3Df))
print(unquote(a=b&b=c))



#编码
#quote操作的是字符串类型,把url的参数和特殊字符都进行编码
#urlencode操作对象是字典类型,或者列表套元组

#解码
#只有unqoute,没有urldecode
#所以解码只用unqoute

 

url编解码

标签:参数   http   操作   bsp   lib   编码   没有   列表   www   

原文地址:https://www.cnblogs.com/tjp40922/p/12617020.html


评论


亲,登录后才可以留言!