我有一组字符串,例如:
('abc', 'def', 'xyz')
我想将这些字符串用作键“类型”的值,并将 2 个额外的键值对关联到每个键,为每个额外的键提供默认值,如下所示:
resulting_list_of_dicts = [{'type' : 'abc' ,'extra_key1' : 0, 'extra_key2' : 'no'},
{'type' : 'def' ,'extra_key1' : 0, 'extra_key2' : 'no'},
{'type' : 'xyz' ,'extra_key1' : 0, 'extra_key2' : 'no'}]
我怎样才能在 Python 2.7 中(聪明地)做到这一点?