如何删除熊猫中的这些列序列?

时间:2018-11-06 20:28:57

标签: python pandas

我敢肯定,删除这些列的方法要简单得多。正如您在图像中看到的那样,索引遵循特定的模式。

enter image description here

1 个答案:

答案 0 :(得分:0)

这将创建您的cols。

from functools import reduce # some versions need this.

cols = reduce(lambda x, y: x+y, [list(range(i+1, 155, 5)) for i in range(3)])