I have 2 csv files as following:
File1.csv:
Name, Email
Jon, [email protected]
Roberto, [email protected]
Mona, [email protected]
James, [email protected]
File2.csv:
Email
[email protected]
[email protected]
What I want is File1.csv without File2.csv, iex File3.csv (the output) should look as following:
File3.csv:
Name, Email
Jon, [email protected]
Roberto, [email protected]
What is the simplest way to code this in Python?