如何检查数据框中的值范围(域)?

How to check for Range of Values (domain) in a Dataframe?

所以想要确定 Pandas Dataframe 中的值:

import pandas as pd

d = {'col1': [1,2,3,4,5,6,7], 'col2': [3, 4, 3, 5, 7,22,3]}
df = pd.DataFrame(data=d)

col2 具有唯一值 3,4,5,6,22(域)。应确定存在的每个值。但只有一次。

有没有办法快速提取 Pandas Dataframe 列中的域?

使用df.max() and df.min()查找范围。

print(df["col2"].unique()) 

Andrej Kesely 是解决方案。完美!