Answers for "how to convert list to dictionary in python 3"

11

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'}
Posted by: Guest on June-16-2020
1

list to dictionary

b = dict(zip(a[::2], a[1::2]))
Posted by: Guest on September-27-2021

Code answers related to "how to convert list to dictionary in python 3"

Python Answers by Framework

Browse Popular Code Answers by Language