标签: python pandas
我有一个列表:
['Christophe', 'Christopher']
然后我遍历列表并在数据框中搜索该值:
for x in scores: result = df[df.eq(name).any(axis=1)]
问题是,这将覆盖具有最新值的结果数据帧。我不知道如何追加,所以我返回所有值;
你能建议吗?
谢谢