I have a large pandas dataframe. One of my columns is a time column, and it currently looks like this 2014-01-01T00:52:00Z
.
I want it to look like
1/1/14 00:55
, but I have no idea how to make the dates look like this for an entire column of a dataframe?
Another example: 2014-10-24T08:55:00Z
becomes 10/24/14 08:55
.