how to insert in a dict code example
Example 1: how to add an element in dictionary
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict["color"] = "red"
print(thisdict)
Example 2: adding one element in dictionary python
mydict = {'score1': 41,'score2': 23}
mydict['score3'] = 45 # using dict[key] = value
print(mydict)