Re: [Tutor] Flattening multi-dimentional list
by Bernard Lebel other posts by this author
Sep 29 2005 6:10AM messages near this date
Re: [Tutor] Flattening multi-dimentional list
|
Re: [Tutor] Flattening multi-dimentional list
Thanks for the examples and references everyone.
I should clarify though that I was simply looking for a *built-in*
feature rather than a function or a list-comprehension. I know these
last two works and I currently use a list comprehension.
# Example:
> >> flatten( [ 1, 3, 4, ('allo', 'bonjour', 'salut' ), 34, False,
False, ( 3, ) ]
[ 1, 3, 4, 'allo', 'bonjour', 'salut' , 34, False, False, 3 ]
Cheers!
Bernard
_______________________________________________
Tutor maillist - Tutor@[...].org
http://mail.python.org/mailman/listinfo/tutor
Thread:
Bernard Lebel
Pujo Aji
Kent Johnson
Alan G
Bernard Lebel
Danny Yoo
Bernard Lebel
|