I have a list of lists, a snippet of which is below:
x_attrib = []
self.x_attrib.append(["Is_virtual", False, 'virtual', 'flag'])
self.x_attrib.append(["X_pos", None, 'pos/x', 'attrib'])
self.x_attrib.append(["Y_pos", None, 'pos/y', 'attrib'])
I want make a functional that returns the index of the item at the first position (i.e. I want to pass "X_pos" to a function, and have it return 1).
How can I do this?