Question: write a function called find_value(mydict, val) that accepts a dictionary called mydict and variable called val. the function should return a list of keys where

write a function called find_value(mydict, val) that accepts a dictionary called mydict and variable called val. the function should return a list of keys where val is contained

def find_value(mydict, val): #the needed code body here pass

d = {"techer": ["Mark", "James", "Sandy"], "police": ["James", "Mary", "Danny"], "gardener": ["Mark", "Sandy", "James"]}

print(find_value(d, "Mark"))

print(find_value(d, "James"))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!