Daftar Zip Elemen Pertama Python

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

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