vote up 4 vote down star
1

I have a python datetime.datetime object. What is the best way to subtract one day?

flag

2 Answers

vote up 16 vote down check

e.g.

from datetime import date, timedelta

d=date.today()-timedelta(days=days_to_subtract)
link|flag
vote up 3 vote down

Subtract datetime.timedelta(days=1)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.