Convert a list of tuples into a simple list, throwing out some of the tuple values, in Python

>>> lt = [('fred', 7), ('george', 5), ('sally', 9)]
>>> l = [i[0] for i in lt]
>>> l
['fred', 'george', 'sally']