I have a list of lists which look like this:
[[[12, 15, 0], [13, 15, 25], [14, 15, 25], [16, 16, 66], [18, 15, 55]]]
What would be the best way to extract all elements occurring at index position 1. I know I can use a for loop like;
for i in list:
for j in i:
print j[2]
But is there a more "pythonic" (short /easy /less code/ efficient) way to do this?