What\'s the most compact way to return the following:
Given a list of tuples, return a list consisting of the tuples first (or second, doesn\'t matter) elements.
Try this.
>>> list(map(lambda x: x[0], my_list))