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'}
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'}
convert two lists to a single dictionary python
#initialize lists
key_list = ['red', 'green', 'blue']
value_list = [1, 2, 3]
#convert lists
my_dict = {}
for key in key_list:
for value in value_list:
my_dict[key] = value
value_list.remove(value)
break
print(my_dict)
how to convert multi list into dict in python
from collections import OrderedDict
o = collections.OrderedDict()
for i in data:
o.setdefault(i[0], []).append(i[1])
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us