List comprehensions: map and tuple
listoftuple = [('bob', 35, 'mgr'), ('mel', 40, 'dev')] print [age for (name, age, job) in listoftuple] print map((lambda (name, age, job): age), listoftuple)