Python, 반대 함수 urllib.urlencode 처리 후 데이터 urllib.urlencode를 dict 로 변환하려면 어떻게 해야합니까? urllib.urldecode존재하지 않는다. 에 대한 문서 로 urlencode, urlparse 모듈은 쿼리 문자열을 Python 데이터 구조로 구문 분석하는 데 사용되는 parse_qs () 및 parse_qsl () 함수를 제공합니다. (이전 Python 릴리스에서는 cgi모듈에 있었습니다 ). 예를 들면 다음과 같습니다. >>> import urllib >>> import urlparse >>> d = {'a':'b', 'c':'d'} >>> s = urllib.urlencode(d) >>> s 'a=b&c=d' >>> d1 = urlparse.par..