Answers for "python index of element in 2d array"

1

python get index of item in 2d list

myList = [[1, 2], [3, 4], [5, 6]]


def index_2d(myList, v):
    for i, x in enumerate(myList):
        if v in x:
            return i, x.index(v)


print(index_2d(myList, 3))
# you get
# (1, 0)
Posted by: Guest on January-03-2021

Code answers related to "python index of element in 2d array"

Python Answers by Framework

Browse Popular Code Answers by Language