declare dictionary in python code example

Example 1: Python New Disctionary

new_dict = dict()

#OR

new_dict = {}

Example 2: dictionary in python

thisdictionary = {'key':'value','key1':'value1'}
print(thisdictionary['key'])

Example 3: how to create dictionary in python

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

Example 4: how to create a dictionary in python

thisdict = {
  "key1" : "value1"
  "key2" : "value2"
  "key3" : "value3"
  "key4" : "value4"
}