标签: python urllib urlencode
import urllib f = { 'eventName' : 'myEvent', 'eventDescription' : 'cool event'} print urllib.urlencode(f)
上面的python程序打印
eventName=myEvent&eventDescription=cool+event
有没有可以将字符串转换回字典的python命令?