convert date to string in pandas dataframe 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: pandas change dtype to timestamp
pd.to_datetime(df.column)