list(list(A)).column(int col) works on lists of lists and looks upon that as a table. It returns one of the columns of the table.
[ [1,2,3], [4,5,6], [7,8,9] ].column(2) == [3,6,9]