I have a problem of the following nature. After reading the data from the csv file to the pandas DataFrame, I have the date in the first column. The format of this date is six characters "yymmdd" (int64). Unfortunately, all attempts to convert to the "yyyy-mm-dd" format have failed.
From the input "171207" it gets the value "1970-01-01 00: 00: 00.000171207". None of the functions I tested support the YY-MM-DD format. (Python 3.9) Asking for suggestions.
Thanks in advance!