如何在python的一列中检索特定值的所有列

时间:2019-05-14 09:01:39

标签: python-3.x pandas dataframe

我有一个数据框,其中我需要检索某一列中特定值的所有数据

数据框

  Property    Min      Max
  weight      10       70 
  height      20       80
  length      30       90
  weight      15       100
  weight      30       45
  length      20       55

输出:

  Property    Min      Max
  weight      10       70 
  weight      15       100
  weight      30       45

代码:

  df[df['Property']== 'weight']['Min']

0 个答案:

没有答案