working with dict python code example
Example 1: Python New Disctionary
new_dict = dict()
#OR
new_dict = {}
Example 2: how to write a dict in pytohn
# get vs [] for retrieving elements
my_dict = {'name': 'Jack', 'age': 26}
# Output: Jack
print(my_dict['name'])
# Output: 26
print(my_dict.get('age'))