📌  相关文章
📜  pandas 合并查询“_merge='left_only'” - Python 代码示例

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

代码示例1
d = (
    df1.merge(df2, 
              on=['c', 'l'],
              how='left', 
              indicator=True)
    .query('_merge == "left_only"')
    .drop(columns='_merge')
)

print(d)
   c  k  l
0  A  1  a
2  B  2  a
4  C  2  d