Is there any way how I can get every first/second/third/... Element of a two dimensional list, e.g. from the list
list = [[1,2], [3,4], [5, 6]]
Get the values 1,3,5 or is it only possible with a loop? Because a loop wouldn't be very practical if I want to do
If 2 in list:
...