Python | Check if given multiple keys exist in a dictionary
Last Updated :
27 Apr, 2023
A dictionary in Python consists of a collection of key-value pairs. Each key-value pair maps the key to its associated value.
Input : dict[] = {"geeksforgeeks" : 1, "practice" : 2, "contribute" :3} keys[] = {"geeksforgeeks", "practice"} Output : Yes Input : dict[] = {"geeksforgeeks" : 1, "practice" : 2, "contribute" :3} keys[] = {"geeksforgeeks", "ide"} Output : No
Let’s discuss various ways of checking multiple keys in a dictionary :
Method #1 Using comparison operator : This is the common method where we make a set which contains keys that use to compare and using comparison operator we check if that key present in our dictionary or not.
Python3
# Python3 code to check multiple key existence
# using comparison operator
# initializing a dictionary
sports = {"geeksforgeeks" : 1, "practice" : 2, "contribute" :3}
# using comparison operator
print(sports.keys() >= {"geeksforgeeks", "practice"})
print(sports.keys() >= {"contribute", "ide"})
Time complexity: O(k), where k is the number of keys in the dictionary
Auxiliary space: O(k), to create the set of keys for comparison.
Method #2 Using issubset() : In this method, we will check the keys that we have to compare is subset() of keys in our dictionary or not.
Python3
# Python3 code heck multiple key existence
# using issubset
# initializing a dictionary
sports = {"geeksforgeeks" : 1, "practice" : 2, "contribute" :3}
# creating set of keys that we want to compare
s1 = set(['geeksforgeeks', 'practice'])
s2 = set(['geeksforgeeks', 'ide'])
print(s1.issubset(sports.keys()))
print(s2.issubset(sports.keys()))
Time complexity: O(n), where n is the length of the test_keys list.
Auxiliary space: O(n), as we are creating a dictionary with n key-value pairs.
Method #3 Using if and all statement : In this method we will check that if all the key elements that we want to compare are present in our dictionary or not .
Python3
# Python3 code check multiple key existence
# using if and all
# initializing a dictionary
sports = {"geeksforgeeks" : 1, "practice" : 2, "contribute" :3}
# using if, all statement
if all(key in sports for key in ('geeksforgeeks', 'practice')):
print("keys are present")
else:
print("keys are not present")
# using if, all statement
if all(key in sports for key in ('geeksforgeeks', 'ide')):
print("keys are present")
else:
print("keys are not present")
Output:keys are present
keys are not present
Time complexity: O(n), where n is the number of key-value pairs in the dictionary.
Auxiliary space: O(n), to store the keys and values in dictionary.
Method #4 : Alternatively, you can use a list comprehension and list comparison to achieve a similar result:
Python3
# initializing a dictionary
sports = {"geeksforgeeks": 1, "practice": 2, "contribute": 3}
# using a list comprehension to check multiple key existence
keys_to_check1 = ['geeksforgeeks', 'practice']
keys_to_check2 = ['geeksforgeeks', 'ide']
keys_present1 = [key for key in keys_to_check1 if key in sports]
keys_present2 = [key for key in keys_to_check2 if key in sports]
print(keys_present1 == keys_to_check1)
print(keys_present2 == keys_to_check2)
# This code is contributed by Edula Vinay Kumar Reddy
Time complexity: O(n),
Auxiliary Space: O(n) and, since it involves a single pass through the list of keys to check. It uses a list comprehension to generate a list of keys that are present in the dictionary.
Similar Reads
How to Check if a Key Exists in a Dictionary in TypeScript ? In TypeScript dictionaries are used whenever the data is needed to be stored in key and value form. We often retrieve the data from the dictionaries using an associated key. Therefore it becomes crucial to check whether the key exists in a dictionary or not. We can use the below methods to check if
4 min read
Python - How to Check if a file or directory exists Sometimes it's necessary to verify whether a dictionary or file exists. This is because you might want to make sure the file is available before loading it, or you might want to prevent overwriting an already-existing file. In this tutorial, we will cover an important concept of file handling in Pyt
5 min read
Python - Find dictionary keys present in a Strings List Sometimes, while working with Python dictionaries, we can have problem in which we need to perform the extraction of dictionary keys from strings list feeded. This problem can have application in many domains including data. Lets discuss certain ways in which this task can be performed. Method #1: U
7 min read
Handling missing keys in Python dictionaries In Python, dictionaries are containers that map one key to its value with access time complexity to be O(1). But in many applications, the user doesn't know all the keys present in the dictionaries. In such instances, if the user tries to access a missing key, an error is popped indicating missing k
4 min read
How to Add Duplicate Keys in Dictionary - Python In Python, dictionaries are used to store key-value pairs. However, dictionaries do not support duplicate keys. In this article, we will explore several techniques to store multiple values for a single dictionary key.Understanding Dictionary Key ConstraintsIn Python, dictionary keys must be unique.
3 min read
Check if element exists in list in Python In this article, we will explore various methods to check if element exists in list in Python. The simplest way to check for the presence of an element in a list is using the in Keyword. Example:Pythona = [10, 20, 30, 40, 50] # Check if 30 exists in the list if 30 in a: print("Element exists in the
3 min read
Python - Access Dictionary items A dictionary in Python is a useful way to store data in pairs, where each key is connected to a value. To access an item in the dictionary, refer to its key name inside square brackets.Example:Pythona = {"Geeks": 3, "for": 2, "geeks": 1} #Access the value assosiated with "geeks" x = a["geeks"] print
3 min read
Python - Keys associated with value list in dictionary Sometimes, while working with Python dictionaries, we can have a problem finding the key of a particular value in the value list. This problem is quite common and can have applications in many domains. Let us discuss certain ways in which we can Get Keys associated with Values in the Dictionary in P
4 min read
Get Key from Value in Dictionary - Python The goal is to find the keys that correspond to a particular value. Since dictionaries quickly retrieve values based on keys, there isn't a direct way to look up a key from a value. Using next() with a Generator ExpressionThis is the most efficient when we only need the first matching key. This meth
5 min read