List Comprehensions: Difference between revisions

From XPUB & Lens-Based wiki
(New page: List comprehensions bring a taste of functional progamming to Python. Comprehensions are often a very handy way to compactly express / filter / proce...)
 
(No difference)

Latest revision as of 11:07, 31 March 2009

List comprehensions bring a taste of functional progamming to Python. Comprehensions are often a very handy way to compactly express / filter / process / otherwise manipulate lists of data in Python, and have many applications including in CGI scripts.