I have csv file with the date and jobs runtime values, I need to convert the object to time format. Time value will be as follows:
00:04:23
00:04:25
pd.to_datetime(df[‘Time’], format=‘%H:%M:%S:’)
This returns the value with default date
1900-01-01 00:04:23
1900-01-01 00:04:25
How do I retain only the runtime as time data type in the column without date.