dict from list of keys and values code example
Example 1: dictionary from two lists
>>> keys = ['a', 'b', 'c']
>>> values = [1, 2, 3]
>>> dictionary = dict(zip(keys, values))
>>> print(dictionary)
{'a': 1, 'b': 2, 'c': 3}
Example 2: python list keys from dictionary
# Basic syntax:
list_of_keys = list(dictionary.keys())