df = pd.DataFrame({
   
    'brand': ['Yum Yum', 'Yum Yum', 'Indomie', 'Indomie', 'Indomie'],
    'style': ['cup', 'cup', 'cup', 'pack', 'pack'],
    'rating': [4, 4, 3.5, 15, 5]
})
df

# 删除重复值后返回的是一个副本,也就是原来的数据不会改变。
df.drop_duplicates() 

# ignore_index=True,会重新对index排序。
df.drop_duplicates(ignore_index=True)