- microsecond
- second
- minute
- hour
Rounding datetime object to date (removing hours, minutes, seconds)
examples/datetime/datetime_rounding.py
import datetime ts = datetime.datetime.now().replace( microsecond=0, second=0, minute=0, hour=0, ) print(ts) # 2023-01-19 00:00:00