I forget the reply all ---------- Forwarded message ---------- From: Gabriele Brambilla <[email protected]> Date: 2014-04-11 16:03 GMT-04:00 Subject: Re: [Tutor] improving speed using and recalling C functions To: Peter Otten <[email protected]>
you are right. probably this is the problem. thanks Gabriele 2014-04-11 15:35 GMT-04:00 Peter Otten <[email protected]>: Gabriele Brambilla wrote: > > > ok, it seems that the code don't enter in this for loop > > > > for gammar, MYMAP in zip(gmlis, MYMAPS): > > > > I don't understand why. > > You have two variables with similar names, gmlis and gmils: > > >> gmlis = [] > > >> gmils=[my_parts[7], my_parts[8], my_parts[9], > >> my_parts[10], my_parts[11]] > > >> for gammar, MYMAP in zip(gmlis, MYMAPS): > > I assume you wanted > > for gammar, MYMAP in zip(gmils, MYMAPS): > > > _______________________________________________ > Tutor maillist - [email protected] > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor >
_______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
