I`m looking to create a new row for a date with the following formatting:
2022-07-20 0:00:00
So basically, today's date and the time as h:mm:ss, all as 0
I'm trying to use pd.to_datetime('today') but the time is my current time and not 0. I also tried to use the same code but with .normalize() and then my time disappears, only the date remains.
Is there a way to do that?