I have a DataFrame with column contains string with time format.
It's looks like this 1'29.30"
and it represent 1 minute 29 seconds and 30 centisecond (30/1000 seconds).
I would like to convert it to time format. My only idea is to create regexp expresion for it.
There is an other way for this task?
Eg. of my df['time_str']
124 1'29.30"
125 1'29.36"
126 1'29.54"
127 1'29.93"
128 1'30.62"
129 1'30.80"
130 1'30.83"
131 1'31.22"
Name: time_str, dtype: object