RosettaCodeData/Task/Associative-array-Merging/Python/associative-array-merging-1.py
2023-07-01 13:44:08 -04:00

6 lines
162 B
Python

base = {"name":"Rocket Skates", "price":12.75, "color":"yellow"}
update = {"price":15.25, "color":"red", "year":1974}
result = {**base, **update}
print(result)