This is probably more a python issue than a Django issue. Also
I don't really know what it is you want to do, but you should
consider if you really need to make all these lists? Also when
dealing with dates or datetimes python can do a lot of string
conversion for you. If you want to do it the way you do it now
you should probably change the code a bit to make it more
readable, it does the same thing:

str_date_list=[]
for item in range(1,32):
    str_date_list.append('%02i-05-09' % item)

I don't get why you should get an error on counter += 1
However you should get an error on
val_time2 = str_date_list[counter + 1]
when counter is  30, as you will get out of index. You dont
need to use counter though, you could just do
for counter in range(31):
But the problem will remain. As I don't know what you are
trying to do, I can't say how to best fix it, maybe you need
to add an extra item to your str_date_list: 01-06-09, that
you can assign to val_time2 the last time in your loop.

~Jakob

On 20 Maj, 09:37, laspal <amit.las...@gmail.com> wrote:
> Hi,
>
> Hi,
>
> my_date_list = ['01', '02',
> '03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30','31']
> str_date_list=[]
> for item in my_date_list:
>     str_date_list.append(item+'-'+'05' + '-' +'09')
>
> counter= 0
> i = iter(range(31))
> for item in i:
>     daily_user_status_list=[]
>     print counter
>     val_time1 = str_date_list[counter]
>     val_time2 = str_date_list[counter + 1]
>     counter =counter + 1
>
> I am getting code error while doing counter = counter + 1 Basically I
> need to different time from my str_date_list each time. but counter =
> counter +1 give me code error. Is there any other way of doing it.
>
> Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to