I'm sure that this question has been asked before, but I can't seem to find a already existing question that has the same requirements as mine.
I have a CSV file with 3 columns, DATE, TOTAL and NAME.
date Total name
0 2008-11-21 32 JOHN SMITH
1 08-25-21 7.9 JOHN SMITH
2 08-25-21 7.4 JOHN SMITH
3 08-27-21 100 JOHN SMITH
4 2008-04-21 36.62 JOHN SMITH
As you can see, there are 3 DATES that don't match the "yyyy-mm-dd" format. I want all the dates the follow the specified format. Is this something that is possible using Pandas?