Academic Work Personal
|
Python /
filter / map
See also http://docs.python.org/library/functions.html#filter . def even(n): return n % 2 == 0 print filter(even, range(11)) # [0, 2, 4, 6, 8, 10] See also http://docs.python.org/library/functions.html#map . def square(n): return n * n print map(square, range(11)) # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100] The examples were borrowed from http://xahlee.org/perl-python/map.html . Links
|
![]() anime | bash | blogs | bsd | c/c++ | c64 | calc | comics | convert | cube | del.icio.us | digg | east | eBooks | egeszseg | elite | firefox | flash | fun | games | gimp | google | groovy | hardware | hit&run | howto | java | javascript | knife | lang | latex | liferay | linux | lovecraft | magyar | maths | movies | music | p2p | perl | pdf | photoshop | php | pmwiki | prog | python | radio | recept | rts | scala | scene | sci-fi | scripting | security | shell | space | súlyos | telephone | torrente | translate | ubuntu | vim | wallpapers | webutils | wikis | windows Blogs and Dev. * Ubuntu Incident Places Debrecen | France | Hungary | Montreal | Nancy Notes Hobby Projects * Jabba's Codes Quick Links [ edit ] |