I have a dictionary where the values are lists. I want to search these for a specific value. right now it returns if the value is in each list individually but i just want overall then it deletes
Here's what it returns right now:
marie true
marie false
marie false
tom false
tom true
tom false
jane false
jane false
jane false
Here is what I want:
marie true
tom true
jane false
Here is the code:
dictionary = {'nyu': ['marie', 'taylor', 'jim'],
'msu': ['tom', 'josh'],
' csu': ['tyler', 'mark', 'john']}
#made in different method in same class
class example:
def get_names(self, name_list):
for i in range(len(name_list)):
for j in dictionary:
if name_list[i] in dictionary[j]:
print('true')
dictionary[j].remove(name_list[i])
else:
print('false')
def main():
name_list = ['marie', 'tom', 'jane']
e = example()
e.get_names(name_list)
main()