I want to calculate the seconds between now and tomorrow 12:00. So I need to get tomorrow 12:00 datetime
object.
This is pseudo code:
today_time = datetime.datetime.now()
tomorrow = today_time + datetime.timedelta(days = 1)
tomorrow.hour = 12
result = (tomorrow-today_time).total_seconds()
But it will raise this error:
AttributeError: attribute 'hour' of 'datetime.datetime' objects is not writable
How can I modify the hour or how can I get a tomorrow 12:00 datetime
object?