I have a dataframe that contains lists of values in the columns like this:

I would like to extract all the rows that contain the value 'adhd'. code that I used:
df[df["Label"] == "adhd"]
But it returns to me an empty dataframe with just the column names. Is it because my data is in list format? is there any way to process this so that I can drop rows, view rows and work with them. I would prefer to keep them as list since many rows has multiple values like ["adhd","depression"].

