dataframe isin multiple columns

Solutions on MaxInterview for dataframe isin multiple columns by the best coders in the world

showing results for - "dataframe isin multiple columns"
Julia
11 Nov 2018
1pd.merge(df2, df1, how='inner')
2#         col1  col2
3# 0      pizza   boy
4# 1      pizza  girls
5# 2  ice cream   boy
6