I would like to see if a particular string exists in a particular column within my dataframe.
I\'m getting the error
ValueError: The truth v
I bumped into the same problem, I used:
if "Mel" in a["Names"].values: print("Yep")
But this solution may be slower since internally pandas create a list from a Series.