I have a DataFrame with the following format:
date time
12/8/2022 5:15 AM
12/9/2022 8:55 PM
12/10/2022. 9:20 AM
I would like to create a new df column with this data in timestamp format with millitary time (24h time format):
2022-12-08 05:15:00
2022-12-09 20:55:00
2022-12-10 09:20:00
I would like to then remove/replace the two columns with the individual date and time and have a column with the timestamp.
I have tried using methods like pd.to_datetime but still having dificulties getting the formatting right.