I have a pandas dataframe that has a column (Process Created Date) with date in the form of a string. When converting it to datetime format, am getting the below error.
data['Process Created Date']=pd.to_datetime(data['Process Created Date'], format='%Y%m%d')
How can be converted to datetime (eg. 8/12/2017) ?