Python Convert two lists to a dictionary














































Python Convert two lists to a dictionary



Description:
To convert two list into a dictionary we can make use of dict() and zip() method which helps to convert into dictionary.
zip() function take iterables (can be zero or more), makes iterator that aggregates elements based on the iterables passed, and returns an iterator of tuples.  
dict():

Program:
key = ['id', 'Name', 'Class'] value = [1, 'ABC', '10'] myDict = dict(zip(key, value)) print(myDict)
Output:
{'id': 1, 'Name': 'ABC', 'Class': '10'} >>>

More Articles of Khushboo Singh:

Name Views Likes
Python program to insert an element in binary tree. 889 20
Tokenize text using NLTK in Python. 1267 12
Python Remove multiple elements from list while Iterating. 794 22
Python How to Check if an item exists in list ? 4348 14
Python How to remove multiple elements from list ? 817 26
Python program to check if two trees are mirror of each other without using recursion. 713 19
Python program to find maximum in Binary tree. 999 19
Python Check if all elements are same using Set 773 15
Python program to find diameter of a binary tree. 1139 20
Python program to print root to leaf paths without using recursion. 885 20
Python program to find root of the tree where children id sum for every node is given. 726 23
Introduction of Python NLTK library 1421 25
Categorizing and Tagging Sentences using NLTK in Python . 1082 19
Python program to find height of a tree without using recursion. 712 16
Python program to find sum of all nodes of the given perfect binary tree. 715 19
Python program to find minimum in binary tree. 876 23
Python Check if element exist in list using list.count() function. 736 13
Python program to convert a given binary tree to doubly linked list. 940 20
Python program to find distance between two nodes of a binary tree. 1578 20
NLTK stop Words 1234 13
Python program to find largest binary search tree in a Binary Tree. 989 20
Python program to find inorder successor in binary search tree with recursion. 1260 18
Python program to convert a binary tree into doubly linked list in spiral fashion. 850 15
Python List check if element are same using all() 725 12
Python program to check if two trees are identical using recursion. 752 30
Python Find the occurrence count of an element in the tuple using count() 1015 23
Python Convert two lists to a dictionary 784 19
Python program to construct a complete binary tree from given array. 1499 14
Python program to find diameter of binary tree in O(n). 924 17
Introduction to the AVL tree. 827 15
Python program to check if two trees are identical without using recursion 711 17
Python Convert a list of tuples to dictionary. 1152 24
Python program to convert a binary tree to a circular doubly link list. 698 21
Python Check if element exist in list based on own logic. 805 23
Python program to merge two binary trees by doing node sum using recursion 1062 27
Python program to check whether a given binary tree is perfect or not. 737 17
Python Check if all elements are same using list.count(). 1159 28
Python program to find an element into binary tree 671 12
Python program to find lowest common ancestor in a binary tree 1272 24

Comments