create a dict from list python 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'}