Answers for "Python convert list of dictionaries to dictionary"

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
4

python dictionary to list

>> d = {'a': 'Arthur', 'b': 'Belling'}

>> d.items()
[('a', 'Arthur'), ('b', 'Belling')]

>> d.keys()
['a', 'b']

>> d.values()
['Arthur', 'Belling']
Posted by: Guest on July-18-2021
1

list to dictionary

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

python list of dictionaries to list

[d['value'] for d in l if 'value' in d]
Posted by: Guest on February-28-2021

Code answers related to "Python convert list of dictionaries to dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language