Create dictionary from two lists
In this post, we will learn how to create a new dictionary out of two lists.
First let's see the input and expected output and then the actual source code of the problem.
input:
keys = ['name', 'age', 'contact']
values = ['Afiz', 30, '9090909090']
...
afiz.hashnode.dev1 min read