[EMAIL PROTECTED] a écrit :
> To step through a list, the python style is avoid an explicit index.
> But what if the same hidden index is to be used for more than one list
> 
> for example:-
>  for key,value in listKeys,listValues :
>      newdict[key]=value

newdict = dict(zip(listKeys, listValues))
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to