# -*- coding: cp936 -*- #python 27 #xiaodeng #urlencode编码问题(以及urlparse) import sys, urllib def urlencode(): params={‘score‘:100,‘name‘:‘小邓‘,‘content‘:‘is good‘} s=urllib.urlencode(params) print (s) if __name__==‘__main__‘: urlencode() #返回结果: #content=is+good&score=100&name=%D0%A1%B5%CB #分析: ‘‘‘ 1、中文被编码 2、空格被加号‘+’链接 3、参数与参数之间用&符号链接 4、思考:urlparse反向解码函数,具体用法为urlparse.parse_qs(‘经过编码的字符串‘)即可实现 ‘‘‘
时间: 2024-10-01 00:45:06