Answers for "two dictionary in a list python"

23

create dictionary python from two 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 May-21-2020
0

dictionary from two list

feat_dic = dict(zip(X.columns, feat_imp))
Posted by: Guest on August-09-2021

Code answers related to "two dictionary in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language