Is it possible to combine two list as a key value pair. The number of elements in both lists are same.
i have two lists as follows.
list1 = ["a","b","c","d","e"]
list2 = ["1","2","3","4","5"]
How i cam combine like the following
dict['a':1,'b':2,'c':3,'d':4,'e':5]