Answers for "python dictionary from list"

4

python save list items to dictionary

'''
Converting a list to dictionary with list elements as keys in dictionary
All keys will have same value
''' 
dictOfWords = { i : 5 for i in listOfStr }
Posted by: Guest on April-28-2020
11

python dictionary from list

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

Code answers related to "python dictionary from list"

Python Answers by Framework

Browse Popular Code Answers by Language