Answers for "delete rows in a table that are present in another table pandas"

0

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

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
Posted by: Guest on January-08-2021

Code answers related to "delete rows in a table that are present in another table pandas"

Python Answers by Framework

Browse Popular Code Answers by Language