我是 Pandas 的初学者,我想知道如何为我想执行的以下逻辑操作编写代码。
有人可以让我知道他们会怎么做吗?
如果单词在熊猫系列中,则从 DataFrame 中的字符串中删除该单词。
让“A”系列成为熊猫系列,如下所示:
index word
0 foo
1 bar
2 baz
让 DataFrame "B" 成为我们想要修改的 DataFrame。
index string
0 foo bar hello there
1 foo Lax
2 bar Kay
3 John Smith
期望的输出:
0 hello there
1 Lax
2 Kay
3 John Smith