Se7enSquared
10/18/2019 - 12:12 AM

Get a set of unique items in a column

Get a set of items in a 'column' (specific row in a transposed list of lists)

column_2 = [[x[i] for x in my_list] for i in range(len(my_list[0]))]
print(set(column_2[2]))