I have a list and a 2D array
example:
key = ['a', 'b', 'c']
value = [[1,2,3], [4,5], [6,7,8,9]]
Using this I need to create a dictionary with key as list items and values as list in 2D array.
expected dictionary is:
dicts = {'a':[1,2,3], 'b': [4,5], 'c': [6,7,8,9]}
Please help me out.