i have a python table like this
t = [
['a', 1, True],
['b', 2, True],
['c', 3, True],
['d', 4, True]
]
i want to extract the 1st element list like this
l = ['a', 'b', 'c', 'd']
i know how tod do it with a for loop, but i can't do it with one line of code, i've tried this
t[:][0]
and also this :
t[0][:]
but this does not give me what i need