我想在日期时间中添加时间。我的初始日期时间是:initial_datetime='2015-11-03 08:05:22'and 是一个字符串,this_hourandthis_min也是字符串。我用:
time='-7:00'
time = time.split(':')
this_hour = time[0]
this_min = time[1]
initial_datetime='2015-11-03 08:05:22'
new_date = datetime.combine(initial_datetime, time(this_hour, this_min))
+ timedelta(hours=4)
但是出现了一个错误:
'str' 对象不可调用。
我想要的输出是initial_datetime加上我的时间(在本例中为 -7 小时),然后加上 4 小时。因此,在我的示例中,新日期应为“2015-11-03 05:05:22”。
狐的传说
相关分类