Convert a list of tuples into a simple list, throwing out some of the tuple values, in Python
- python take list of tuples make list
- given list of tuples get first value of each
>>> lt = [('fred', 7), ('george', 5), ('sally', 9)]
>>> l = [i[0] for i in lt]
>>> l
['fred', 'george', 'sally']