I have the following dataframe:
df = pd.DataFrame({'Name':['Tony','Mathew'],'Value':['1','2']})
How do I check if 'Tony' exists in column 'Name'? I tried the following, but it doesnt seem to work:
print(bool('Tony' in df.Name))
Which is always returning False despite 'Tony' being present in column 'Name'