I am using the below code but 'Start Date' and 'End Date' remain as strings even after being I attempt to convert their datatypes when importing the data. How can I convert them to dates in my dataframe?
import pandas as pd
import numpy as np
import datetime as dt
df = pd.read_excel('sfdc_churn_report.xltx',
index_col = None,
dtype = {'Start Date': dt.date,
'End Date': dt.date}
)