Answers for "checking if key is in dictionary python"

1

check if dict key contains specific key and value

if (key, value) in d.items():
	print("yes")
Posted by: Guest on November-16-2020
0

how to check if a key is present in python dictionary

dict = { "How":1,"you":2,"like":3,"this":4}
key = "this"
if key in dict.keys():
    print("present")
    print("value =",dict[key])
else:
    print("Not present")
Posted by: Guest on April-22-2021

Code answers related to "checking if key is in dictionary python"

Browse Popular Code Answers by Language