Answers for "create dict from list of keys and values"

2

create dictionary key and values from lists

keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
print(dictionary) # {'a': 1, 'b': 2, 'c': 3}
Posted by: Guest on September-14-2021
0

dict_keys to list

list(newdict.keys())
Posted by: Guest on July-26-2020
-3

dict keys to list

newlist = list()
Posted by: Guest on May-30-2021

Code answers related to "create dict from list of keys and values"

Python Answers by Framework

Browse Popular Code Answers by Language