how to test for nesting inlist

Alex Martelli aleaxit at yahoo.com
Mon Jan 22 08:00:59 EST 2001


<cpsoct at my-deja.com> wrote in message news:94h7pi$b86$1 at nnrp1.deja.com...
> What are list comprehensions? I have looked and looked and looked in
> books and on www.python.org and i see no mention of these. Is this

A list comprehension is a syntax form such as:

    [<expression> for <var> in <sequence>]

It was added in Python 2 (a few months ago; your books may be older
than that) and you'll fit it mentioned at
http://www.python.org/2.0/
(look for the header "List Comprehensions" about 3/4th of the way
down this big page).


Alex







More information about the Python-list mailing list