I have two CSV files they look identical one has a date format like the following when I double click on each row "11/9/2017 9:18:00 AM" but what looks like in CSV file without a double click is 11/9/17 9:18. For this CSV following format does not return any error. '%m/%d/%Y %H:%M'
The other CSV file when I double click on a row I get the following: "5/17/2020 8:30:00 AM" but without the double click, it looks like this 5/17/20 8:30. However for this file '%m/%d/%Y %H:%M' returns an error that no matching format found.
I know %y is for two digits year and %Y is for 4 digits, however, can anyone tell me why the first CSV does not return any error or why the first CSV returns an error?
Is there any command I can issue to check if there are more differences between these two CSV files?