Python Program to Combines the Lists to a Dictionary

key=['Name', 'Age', 'Marriage Status']
value=['Jeff Bezos', 40, 'Married']
details=zip(key, value)
Dict=dict(details)
print(Dict)

Output:
Python Program to Combines the Lists to a Dictionary