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
You should check the value of your line of code like adding checking length of it.
if(len(a['Names'].str.contains('Mel'))>0): print("Name Present")