I want to compare 2 csv files and output the changes in a list or set using python pandas without iteration.
file1.csv
- Alex
- Johnny
- Mark
- Steve
- Raul
file2.csv
- Alex
- Mark
I want the output to be something like p.s: Csv files contain the names as rows (Every row 1 name)
difference = [ Johnny, Steve, Raul] or {'Johnny','Steve','Raul'}