I have two different list:
key = ['key1', 'key2', 'key3']
value = ['value1', 'value2', 'value3']
I want to map it like this :
dictionary = {'key1':'value1',
'key2':'value2',
'key3':'value3'}
I tried this:
dictionary = {key, value}
But I got this result:
TypeError: dict expected at most 1 arguments, got 2