I have a variable which is <type 'datetime.timedelta'> and I would like to compare it against certain values.
Lets say d produces this datetime.timedelta value 0:00:01.782000
I would like to compare it like this:
#if d is greater than 1 minute
if d>1:00:
print "elapsed time is greater than 1 minute"
I have tried converting datetime.timedelta.strptime() but that does seem to work. Is there an easier way to compare this value?
0:00:01.78200is what a timedelta looks like when printed, but that's not a particularly useful format when debugging. Userepr()to show more accurate information. That way you might have guessed at the solution, asrepr(d)would have showndatetime.timedelta(0, 1, 782000)– Thomas Wouters Apr 7 '10 at 11:29