Hackerss.com

hackerss
hackerss

Posted on

Python Remove duplicates of a dataframe


import pandas as pd

df = pd.DataFrame({'a': [1, 1, 2, 2, 3, 3, 4, 4],
                   'b': [1, 1, 2, 2, 3, 3, 4, 4],
                   'c': [1, 1, 2, 2, 3, 3, 4, 4]})

df = df.drop_duplicates()

print(df)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)