I've 2 lists say:
and i want a dictionary as an output:
How to achieve this using Built in Functions?
Code:
list1 = ['a','b','c'] list2 = [1,2,3]
Code:
dict1 = {'a':1,'b':2,'c':3}
Comment