I have This
[
('uniq_key', 998, 'customerno', 11098),
('uniq_key', 999, 'customerno', 11099),
('uniq_key', 1000, 'customerno', 11100)
]
============================================
i need This
{'uniq_key': 998,
'customerno': 11098,
'uniq_key': 999,
'customerno': 11099,
'uniq_key': 1000,
'customerno': 11100
}
Any Solution