Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to increment the day in datetime? In python.

for i in xrange(1,5)
    date=datetime.datetime(2003,8,i,12,4,5)
    print date

But i need pass through years? Any ideas? Should be easyier way....

share|improve this question

2 Answers

up vote 25 down vote accepted
date=datetime.datetime(2003,8,1,12,4,5)
for i in range(5): 
    date += datetime.timedelta(days=1)
    print(date) 
share|improve this answer
That what i need! Thanks! – Pol Jul 13 '10 at 19:05
@Pol, remember to accept your answers... – Wayne Werner Jul 13 '10 at 19:48

Incrementing dates can be accomplished using timedelta objects:

import datetime

datetime.datetime.now() + datetime.timedelta(days=1)

Look up timedelta objects in the Python docs: http://docs.python.org/library/datetime.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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