On May 20, 9:01 am, google torp <toppe...@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
If you ever need to iterate through a list in Python but keep a counter as well, you should use the enumerate() function. for i, val in enumerate(mylist): print val # the list item print i # the counter -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---