两个字典合并

case01:当两个字典的k值相等时,合并后只展示最后一个

方法:

update

  1. """
  2. 适用合并两个字典(key不能相同否则会被覆盖)
  3. """
  4. A = {'a': 11, 'b': 22}
  5. B = {'c': 48, 'd': 13}
  6. #update() 把字典B的键/值对更新到A里
  7. A.update(B)
  8. print(A)
  9. ##{'a': 11, 'b': 22, 'c': 48, 'd': 13}

copy
{**dict, dict2**}

image.png