fast dictionary initialization

maurice mauricioliveiraguarda at gmail.com
Fri Jun 10 17:07:41 EDT 2016


Hi. If I have already a list of values, let's call it valuesList and the keysList, both same sized lists, what is the easiest/quickest way to initialize a dictionary with those keys and list, in terms of number of lines perhaps?

example:
valuesList = [1,2,3]
keysList   = ['1','2','3']

So the dictionary can basically convert string to int:

dictionary = {'1':1, '2':2, '3':3}

Thanks



More information about the Python-list mailing list