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  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to