如何在 pandas 上取模查询

How to modulo query on pandas

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

     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

对模 3 使用 boolean indexing:

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')