I am trying to convert a set of date time data within Python.
The data frame within the pandas library looks like the following:
     dates    dates2        dates3
2011-05-09  20110509    05.2011.09
2011-09-23  20110923    09.2011.23
2012-04-30  20120430    04.2012.30
2014-09-12  20140912    09.2014.12
Is there an elegant way to automatically convert this data from an object into a date time data type, without having to loop through each element within each column?
