How can I convert a DataFrame column of strings (in dd/mm/yyyy format) to datetimes?
You can use the following if you want to specify tricky formats:
df['date_col'] = pd.to_datetime(df['date_col'], format='%d/%m/%Y')
More details on format
here: