I need to fill a column with values, that are present in a set and not present in any other columns.
initial df
c0 c1 c2 c3 c4 c5 0 4 5 6 3 2 1 1 1 5 4 0 2 3 2 5 6 4 0 1 3 3 5 4 6 2 0 1 4 5 6 4 0 1 3 5 0 1 4 5 6 2 I need df['c6'] column that is a set-like difference operation product between a set of set([0,1,2,3,4,5,6]) and each row of df
so that the result df is
c0 c1 c2 c3 c4 c5 c6 0 4 5 6 3 2 1 0 1 1 5 4 0 2 3 6 2 5 6 4 0 1 3 2 3 5 4 6 2 0 1 3 4 5 6 4 0 1 3 2 5 0 1 4 5 6 2 3 Thank you!