get array element

Ivan Illarionov ivan.illarionov at gmail.com
Thu Apr 10 14:08:30 EDT 2008


On Apr 10, 9:22 pm, "Bryan.Fodn... at gmail.com"
<Bryan.Fodn... at gmail.com> wrote:
> I have an array, and I would like to get the indice value.
>
> a = array([13,14,15,16])
>
> I would like something like a.getindice(15)
>
> If I want 15 it would return 2

>>> a = array('i', [13,14,15,16])
>>> a.index(15)
2



More information about the Python-list mailing list