2

我需要模查询,因为数据很长,只需要在一个屏幕上显示。这是我的数据集

     Name
1    they
2    ulti
3    they
4    set
5    djhd
6    tdh
7    t473

我需要的是,1 modulo 3在这种情况下

     Name
1    they
4    set
7    t473
4

1 回答 1

3

boolean indexing与模 3 一起使用:

df = df[df.index % 3 == 1]
print (df)
   Name
1  they
4   set
7  t473

详情

print (df.index % 3 )
Int64Index([1, 2, 0, 1, 2, 0, 1], dtype='int64')
于 2018-06-29T07:36:20.943 回答