Question
How to convert a timedelta object into a datetime object
What is the proper way to convert a timedelta object into a datetime object?
I immediately think of something like datetime(0)+deltaObj
, but that's not very nice... Isn't there a toDateTime()
function or something of the sort?
45 104105
45