Answers for "convert list of list to list of dictionary python"

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
11

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}
Posted by: Guest on February-16-2021
0

python dictionary to list

for key, value in dict.iteritems():
    temp = [key,value]
    dictlist.append(temp)
Posted by: Guest on July-18-2021

Code answers related to "convert list of list to list of dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language