printing the array index in python code example
Example: python get element by index
# To return the index of the first occurence of element x in lst
ind = lst.index(x)
# To return the index of the first occurence of element x in lst
ind = lst.index(x)