Hello,
Im having a little list problem with big lists. Say for example, I have this
Numbers = [["aaa", "bbb", "ccc"] , ["ddd", "eee", "fff"]]
How do I search and return from this list? eg searching for "fff" and returning "ddd"?
I can only return specific position in the list, but pos. 0 is ["aaa", "bbb", "ccc"]...