On 9/27/07, Arnaud Delobelle <arno@marooned.org.uk> wrote:
>
>     for x in mylist:
>         f(x)
>
>
>     [f(x) for x in mylist]
>

am i missing something or the one-liner syntax is great for this?

for x in mylist: f(x)

lucio.