Say I have this dataframe:
col1 col2
'a' [1,2,3]
'a' [1,2,3]
'b' [4,5,6]
and I want to drop the duplicates (in this case the first two rows). How would I accomplish this in a time efficient Pythonic manner (my full dataframe is millions of rows and 7 columns)