Verteiltesystheme/Code/helpers.py

4 lines
113 B
Python
Raw Permalink Normal View History

2022-03-20 09:47:49 +01:00
def index_2d(myList, v):
for i, x in enumerate(myList):
if v in x:
return (i, x.index(v))