so what is the easiest way to to get to a list of months in a given timeinterval, e.g.<br><br>&gt;&gt; startdate = datetime.date(2005,2,13)<br>&gt;&gt; enddate = datetime.date(2007,1,25)<br>&gt;&gt; delta = enddate - startdate
<br>&gt;&gt; delta.days<br>711<br>&gt;&gt; delta.months<br>exceptions.AttributeError&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Traceback (most recent call last)<br>AttributeError: &#39;datetime.timedelta&#39; object has no attribute &#39;months&#39;
<br><br>I want to compute the &quot;monthdifference&quot; and so I can then iterate over the months from my startdate to my enddate<br>what is the easiest way to accomplish this?<br>thanks for any insight you might have<br>
-frank<br><br>