我希望看到一个特定的字符串是否存在于我的数据框架中的一个特定列中。
我听错了
ValueError: The truth value of a Series is ambiguous. Use a.empty, A.bool ()、 a.item ()、 a.any ()或 a.all ()。
import pandas as pd
BabyDataSet = [('Bob', 968), ('Jessica', 155), ('Mary', 77), ('John', 578), ('Mel', 973)]
a = pd.DataFrame(data=BabyDataSet, columns=['Names', 'Births'])
if a['Names'].str.contains('Mel'):
print ("Mel is there")