I have to add datetime lik ‘2019-10-18 11:46:08 ‘+ ‘5 hour 5 second’, 5 hour 5 second is coming from the database and this is not fixed what will be it ie time will be like (15 min, 1 hour 15 min etc) i have tried many thing but getting error how to solve this
JavaScript
x
7
1
import datetime
2
date_time_str = '2019-10-18 11:46:08 '+ '5 hour 5 second'
3
date_time_obj = datetime.datetime.strptime(date_time_str, '%b %d %Y %I:%M%p')
4
print('Date:', date_time_obj.date())
5
print('Time:', date_time_obj.time())
6
print('Date-time:', date_time_obj)
7
Advertisement
Answer
Firstly store separately the datetime string and the offset you want to add to the datetime:
JavaScript
1
3
1
date_time_str = '2019-10-18 11:46:08 '
2
offset = '5 hour 5 second'
3
Parse the datetime and offset strings:
JavaScript
1
3
1
dt = datetime.datetime.strptime(date_time_str ,'%Y-%m-%d %H:%M:%S ')
2
offset = datetime.datetime.strptime(offset, '%H hour %S second')
3
Add the offset to the datetime as a timedelta:
JavaScript
1
3
1
dt + datetime.timedelta(hours=offset.hour, seconds=offset.second)
2
# datetime.datetime(2019, 10, 18, 16, 46, 13)
3