Assuming I have a list of tuples like the following:
a = [('a','b'), ('c','d'), ('e','f')]
If I were to execute this line 'a' in a I would get False.
Is there a way to tell python "search the just for the first argument and accept whatever in the second"?
So that I could search something like ('a', *) in a and get True?