Tried list[:][0]
to show all first member of each list inside list is not working. Result is unknowingly will same as list[0][:]
So i use list comprehension like this:
[i[0] for i in list]
which return first element value for each list inside list.