Lista de zíper Python Primeiro elemento

a = [['sad', 1], ['dsads', 2]]
zip(*a)[0]

#results :
('sad', 'dsads')
Nutty Nightingale