No, there is no way in pandas to automatically recognize date columns .
Read moreHow do I use Pandas to datetime?
Example Data
Read moreHow does Pandas sort date and time?
sort_values(by=column_name) to sort pandas. DataFrame by the contents of a column named column_name . Before doing this, the data in the column must be converted to datetime if it is in another format using pandas. to_datetime(arg) with arg as the column of dates.
Read more