d= {'Time': '1', 'Key':'val1'}
d1={'Time':'2', 'Key':'val1'}
d2={'Time':'3', 'Key':'val1'}
d3={'Time':'3', 'Key':'val2'}
d3={'Time':'8', 'Key':'val2'}}
How to print the output in this format:
output=[{Time': '1', 'Key':'val1'}, {'Time':'3', 'Key':'val2'}]
How do I remove the duplicate values by a single key, value combination and print the first occurrence of the combination. Thanks for you help.