how to append in dictionary code example

Example 1: add new keys to a dictionary python

d = {'key':'value'}
print(d)
# {'key': 'value'}
d['mynewkey'] = 'mynewvalue'
print(d)
# {'mynewkey': 'mynewvalue', 'key': 'value'}

Example 2: how to add an element in dictionary

thisdict =	{
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
thisdict["color"] = "red"
print(thisdict)

Example 3: python dict append value

default_data = {'item1': 1,
                'item2': 2,
          	    }

default_data.update({'item3': 3})
# or
default_data['item3'] = 3