sum function

Dave Angel d at davea.name
Thu Oct 4 23:39:50 CEST 2012


On 10/04/2012 05:29 PM, Mike wrote:
> I get below error
>
> NameError: name 'functools' is not defined
>

functools is a module in the standard library. You need to import it.

import functools



-- 

DaveA



More information about the Python-list mailing list