关于python:如何在pandas中获取数据帧列

How to take column of dataframe in pandas

本问题已经有最佳答案,请猛点这里访问。

现在我有了这个数据框架:

1
2
3
4
5
6
      A    B    C
0     m   1    b
1     n   4    a
2     p   3    c
3     o   4    d
4     k   6    e

那么,如何在列中得到n,p,k,如下所示:

1
2
3
4
      A    B    C
0     n   4    a
1     p   3    c
2     k   6    e

谢谢


使用。

1
df = df.loc[df.A.isin(['n','p','k']),:]