You can merge two dictionaries by iterating over the key-value pairs of the second dictionary with the first one. d3 = d1.copy() for key, value in d2.items():
確定! 回上一頁