37,743
社区成员




Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import urllib
>>> p = '/wEPDwUJNjc5'
>>> e = urllib.urlencode({'name':p})
>>> print e
name=%2FwEPDwUJNjc5
>>> e
'name=%2FwEPDwUJNjc5'
>>> print urllib.unquote(e)
name=/wEPDwUJNjc5
>>>