📌  相关文章
📜  在 Pandas DataFrame 中的所有列中查找唯一值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:52.859000             🧑  作者: Mango

代码示例1
# import pandas library
import pandas as pd

# create pandas DataFrame
df = pd.DataFrame({'fruits': ['orange', 'mango', 'apple', 'grapes', 'orange', 'mango'],
                   'price': ['40', '80', '30', '40', '30', '80'],
                   'quantity': ['200', '300', '300', '400', '200', '800']
                   })

# get the unique value of all columns
for col in df:
  print(df            
                            
        .unique())