how do you intialize a dictionary in python code example
Example 1: initialize a dict from list
dict.fromkeys(["key1", "key2", "key3"], "value")
{'key1': 'value', 'key2': 'value', 'key3': 'value'}
Example 2: python initialize empty dictionary
d = dict()
d = {}