DY个
list1=[{'Key': 'A', 'Value': '正确'}, {'Key': 'B', 'Value': '错误'}] dict1={} for i in list1: dict1.update(i) print(dict1)
运行结果:
{'Key': 'B', 'Value': '错误'}
第二个:
l1=[{1:'a',2:'b'},{3:'c',4:'d'}] d1={} for i in l1: d1.update(i) print (d1) #Output:{1: 'a', 2: 'b', 3: 'c', 4: 'd'}
运行结果:
{1: 'a', 2: 'b', 3: 'c', 4: 'd'}