I have a pandas column with timestamp strings in the format '00:00:00.000' (hours, minutes, seconds, micro seconds). I would like to convert them to datetime
objects to work on the seconds.
I have seen many similar questions here for example. I am guessing that I should use strptime
but I couldn't figure out how.