pandas code to convert string to date datetime.date code example
Example 1: from string to time python dataframe
dfc['Time_of_Sail'] = pd.to_datetime(dfc['Time_of_Sail'],format= '%H:%M:%S' ).dt.time
Example 2: convert series to datetime
pd.to_datetime(df['your_time_column'])