I can't see the answer for this anywhere but I know it's a stupid question so sorry in advance!!
I have a list like this:
fullList = [("a","/a/"),("b","/b/"),("c","/c/"),("d","/d/"),("e","/e/")]
If I have the value, lets say c then how do I get it's index for the array?
If I use the index method it's doesn't work:
listIndex = fullList.index('c')
Any ideas?
Cheers and sorry if a really stupid question...