(u'Type', u'RES')
(u'CustomerId', u'1110566212417')
有没有办法分配Type = Res并将其存储在集合
中答案 0 :(得分:1)
你可以简单地使用dict
构造函数(它需要一个元组列表并制作一个dict):
pairs = [
(u'Type', u'RES'),
(u'CustomerId', u'1110566212417')
]
collection = dict(pairs)
In [1]: collection
Out[1]: {u'CustomerId': u'1110566212417', u'Type': u'RES'}