Let's say I have names as a list of tuples that contain name tuples in arbitrary order:
names = [(1,"Alice"), (2,"Bob")]
and genders as another list of tuples that contain gender tuples in arbitrary order:
genders = [(2,"male"), (1,"female")]
How can I effectively match the two lists by using the first elements of the tuples as a key to get:
result = [("Alice","female"), ("Bob","male")]