I have 2 python list of dictionaries:
[
{'index':'1','color':'red'},
{'index':'2','color':'blue'},
{'index':'3','color':'green'}
]
and
[
{'device':'1','name':'x'},
{'device':'2','name':'y'},
{'device':'3','name':'z'}
]
How can I append each dictionary from the second list to the first list so as to get an output as:
[
{'device':'1','name':'x','index': '1', 'color': 'red'},
{'device':'1','name':'x','index': '2', 'color': 'blue'},
{'device':'1','name': 'x','index': '3', 'color': 'green'}
{'device':'2','name':'y''index': '1', 'color': 'red'},
{'device':'2','name':'y','index': '2', 'color': 'blue'},
{'device':'2','name':'y','index': '3', 'color': 'green'}
{'device':'3','name':'z','index': '1', 'color': 'red'},
{'device':'3','name':'z','index': '2', 'color': 'blue'},
{'device':'3','name':'z','index': '3', 'color': 'green'}
]
See Question&Answers more detail:
os