1. 程式人生 > >iloc[[i]] 和 loc[[i]] 的區別

iloc[[i]] 和 loc[[i]] 的區別

ron 一個 dex 區別 pre 1.0 的區別 str strong

In [2]: df
Out[2]: 
          A         B
0  1.068932 -0.794307
2 -0.470056  1.192211
4 -0.284561  0.756029
6  1.037563 -0.267820
8 -0.538478 -0.800654

In [5]: df.iloc[[2]]
Out[5]: 
          A         B
4 -0.284561  0.756029

In [6]: df.loc[[2]]
Out[6]: 
          A         B
2 -0.470056  1.192211


一個是按照index的序值. 一個是按照index的具體值.

iloc[[i]] 和 loc[[i]] 的區別