delete rows in a table that are present in another table pandas

Solutions on MaxInterview for delete rows in a table that are present in another table pandas by the best coders in the world

showing results for - "delete rows in a table that are present in another table pandas"
Kaidence
13 Jun 2018
1print (pd.merge(a,b, indicator=True, how='outer')
2         .query('_merge=="left_only"')
3         .drop('_merge', axis=1))
4   0   1
50  1  10
62  3  30
7