Like the title explains, let's say I have a dictionary like this:
dictionary = {apple: ["red", "healthy"], fries: ["yellow", "not healthy"], wall: ["is that eatable?"]}
The length of each list can change but we know for sure that each value (all are strings) is stored in a list. Let's say i have the variable word = "is that eatable?"
and i need to find which key have this value, how can i make this possible if they're stored in lists? Libraries are not allowed to solve this, thanks in advance for those who will try to help