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....
|
|
|
|||||
|
|
|
Incrementing dates can be accomplished using timedelta objects:
Look up timedelta objects in the Python docs: http://docs.python.org/library/datetime.html |
||||
|
|