第二节 urlencode编码和parse解码
Posted kogmaw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二节 urlencode编码和parse解码相关的知识,希望对你有一定的参考价值。
1 import urllib.request 2 import urllib.parse 3 4 5 params = {‘name‘:‘张三‘,"age":"18",‘say‘:‘hello world‘} 6 result = urllib.parse.urlencode(params) 7 print(result) 8 result2 = urllib.parse.parse_qs(result) 9 print(result2) 10 11 #示例 12 url1 = ‘https://www.baidu.com/s?wd=‘ 13 params2 = {‘wd‘:‘虚拟环境‘} 14 url2 = urllib.parse.urlencode(params2) 15 url3 = url1 + ‘?‘ + url2 16 resp = urllib.request.urlopen(url3) 17 print(resp.readline())
以上是关于第二节 urlencode编码和parse解码的主要内容,如果未能解决你的问题,请参考以下文章
URL编码与解码(使用 Python3 urllib.parse) 与 贴吧小爬虫案例
python 中的 urlencode 编码与 urldecode 解码
python 中的 urlencode 编码与 urldecode 解码