📌  相关文章
📜  删除一个表中存在于另一个表 pandas 中的行 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:17.308000             🧑  作者: Mango

代码示例1
print (pd.merge(a,b, indicator=True, how='outer')
         .query('_merge=="left_only"')
         .drop('_merge', axis=1))
   0   1
0  1  10
2  3  30