arrays in lists

Peter Stahlir peter.stahlir at googlemail.com
Mon Dec 17 08:05:56 EST 2007


Hi!

I have a list of arrays and want to find an array with list.index(x).
Is that possible. I get an
ValueError: The truth value of an array with more than one element is
ambiguous. Use a.any() or a.all()


For example:
from numpy import array
a = array([1])
b = array([2])
c = [a,b]
d = c.index(a)

Thank you.



More information about the Python-list mailing list