11.07.2015 Views

Python - ACE home page

Python - ACE home page

Python - ACE home page

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Lambda Expressions>>> formula = lambda x, y: x *x + x*y + y*y>>> formula>>> apply(formula, (2,3))19>>> list(map(lambda x: 2*x, [1, 2, 3]))[2, 4, 6]>>> list(filter(lambda x: x>0, [1, -1, 2, -2, 3, 4, -3, -4]))[1, 2, 3, 4]>>> from functools import reduce>>> reduce(lambda x,y:x*y, [1, 2, 3, 4, 5])120>>> def fact(n): return reduce (lambda x, y: x*y, range(1, n+1))>>> fact(5)120Lecture 1238

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!