this seems to work. Thanks!
Alex

x= 3
indices = [i for i, row in enumerate(mat) if x in row[1:]]

2009/3/20 Chris Rebert <c...@rebertia.com>:
> On Fri, Mar 20, 2009 at 4:34 AM, Alessandro Zivelonghi
> <zasaconsult...@gmail.com> wrote:
>> Many Thanks guys!
>>
>> and what if I need to look ONLY into the second and third columns,
>> excluding the first item of each rows?
>>
>> for example if x = 3 I need to get  [0] and not [0,1]
>
> indices = [i for i, row in enumerate(mat) if 1<= i <= 2 and 3 in row[1:]]
>
> Cheers,
> Chris
>
> --
> I have a blog:
> http://blog.rebertia.com
>



-- 
=========================
Alessandro Zivelonghi Ziller

Max-Planck-Institut für Plasmaphysik, Garching, DE
Middle-Age Fusion Engineer
===
http://www.tecnopolis.eu
skype: alexzive
" I'm sure that in 1985 plutonium is available in every corner drug
store, but in 1955 it's a little hard to come by"
Dr. D.Brown
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to