7 lines
156 B
Text
7 lines
156 B
Text
|
|
base = {"name":"Rocket Skates", "price":12.75, "color":"yellow"}
|
||
|
|
update = {"price":15.25, "color":"red", "year":1974}
|
||
|
|
|
||
|
|
result = base + update
|
||
|
|
|
||
|
|
print result
|