I am trying to compare two CSV files and print the differences in Python as a custom text file.
For example:
CSV 1:
Id, Customer, Status, Date
01, ABC, Good, Mar 2023
02, BAC, Good, Feb 2024
03, CBA, Bad, Apr 2022
CSV 2:
Id, Customer, Status, Date
01, ABC, Bad, Mar 2023
02, BAC, Good, Feb 2024
03, CBA, Good, Apr 2024
Expected Output:
Id 01 Status is changed to Bad
Id 03 Status is changed to Good
Id 03 Date changed is to Apr 2024
Any suggestion/idea to code for the expected output. Thanks