[Python] datetime設定成指定時間

生成指日期時間的datetime:

d = datetime(2010,1,2) #生成2020年1月2日0時0分0秒

d = datetime(2010,1,2,3,4,5) #生成2020年1月2日3時4分5秒

設定現有datetime為指定時間

target_time = tomorrow.replace(hour=6,minute=0,second=0,microsecond=0)