Skip to content
Advertisement

How to add current date with string like ‘1 hour and 5 second ‘ in python

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

Advertisement

Answer

Firstly store separately the datetime string and the offset you want to add to the datetime:

JavaScript

Parse the datetime and offset strings:

JavaScript

Add the offset to the datetime as a timedelta:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement