I have 2 CSV files.
- The first CSV file simply has one field (or column) name titled 'video_url' that contains a list of unique URL's.
- The second CSV file contains a wide array of 10-15 field names. HOWEVER, one of the field names has the same 'video_url' field name mentioned in the first CSV file.
Here is my dilemma/problem statement:
I am trying to write python code that can compare these two csv files using only the 'video_url' column/field, and if there is an exact match, that record is NOT included in a new CSV file. The new CSV file would include only records where there wasn't an exact match.
(and please bear with me as I am completely new to Python and programming in general).