python_ref_dictionary_update.py:
x
 
car = {
  "brand": "Porsche",
  "model": "911",
  "year": 1963
}
car.update({"color": "White"})
print(car)