¡@

Home 

python Programming Glossary: with_lambda

Returning the product of a list

http://stackoverflow.com/questions/2104782/returning-the-product-of-a-list

# from functools import reduce # python3 compatibility def with_lambda list reduce lambda x y x y list def without_lambda list reduce.. timeit a range 50 b range 1 50 #no zero t timeit.Timer with_lambda a from __main__ import with_lambda a print with lambda t.timeit.. #no zero t timeit.Timer with_lambda a from __main__ import with_lambda a print with lambda t.timeit t timeit.Timer without_lambda a..