Please critique my script

bruno.desthuilliers at gmail.com bruno.desthuilliers at gmail.com
Fri Jul 15 03:19:49 EDT 2011


On Jul 15, 8:36 am, Chris Angelico <ros... at gmail.com> wrote:
> This can alternatively be done with map():
>
> sortlist = map(lambda x,y: x+y, npalist, nxxlist)
>
>
> (It would have been a lot cleaner if Python exposed its operators as
> functions.

from operator import add







More information about the Python-list mailing list