python字典操作

import json
dic = {
         'str': 'this is a string',
         'list': [1, 2, 'a', 'b'],
         'sub_dic': {
                       'sub_str': 'this is sub str',
                       'sub_list': [1, 2, 3]
                     },
         'end': 'end'
       }
a = json.dumps(dic)
print a

输出结果: {"sub_dic": {"sub_str": "this is sub str", "sub_list": [1, 2, 3]}, "end": "end", "list": [1, 2, "a", "b"], "str": "this is a string"}

 keys = ['ne_id','attached','name','devid','dev_zone_name']
values  = ['ne_id','attached','name','devid','dev_zone_name']

dict(zip(self.keys, values))

将两列list组成一个dict

原文地址:https://www.cnblogs.com/flintlovesam/p/5509364.html