python create dict from list code example

Example 1: python save list items to dictionary

'''
Converting a list to dictionary with list elements as keys in dictionary
All keys will have same value
''' 
dictOfWords = { i : 5 for i in listOfStr }

Example 2: list to dict python

my_list = ['Nagendra','Babu','Nitesh','Sathya']
my_dict = dict() 
for index,value in enumerate(my_list):
  my_dict[index] = value
print(my_dict)
#OUTPUT
{0: 'Nagendra', 1: 'Babu', 2: 'Nitesh', 3: 'Sathya'}

Example 3: python list to dictionary

def to_dictionary(keys, values):
    return dict(zip(keys, values))
    
keys = ["a", "b", "c"]    
values = [2, 3, 4]
print(to_dictionary(keys, values)) 		# {'a': 2, 'c': 4, 'b': 3}

Example 4: python dictionary with list

dictionary = {"one": [1, 2, 3, 4, 5], "two": "something"}
print(dictionary["one"][2])


3