compare two excel files using python pandas

Solutions on MaxInterview for compare two excel files using python pandas by the best coders in the world

showing results for - "compare two excel files using python pandas"
Josefa
16 Jan 2018
1comparison_values = df1.values == df2.values
2print (comparison_values)
3