I'm using python and pandas to transform csv's, I imported the csv as a dataframe.
the dataframe has a string-column containing dates in format "January 1, 2016, Hour 0"
I'd like to convert that string into a date or even string in format dd/mm/yyyy hh:mm
note that in this case the minutes will always be 0.
thanks !
I've done it using datetime and strptime as following
or generally:
for more on datetime default lib check: datetime
and datetime format codes: datetime format codes