Answers for "map dictionary to list 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
0

python dictionary to list

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

Python Answers by Framework

Browse Popular Code Answers by Language