我怎样才能(以一种非常有效的python方式)获得包含在另一个长列表中的一组子列表??,我用例子解释:
假设我有这个:
List = [[1,2,3],[4,5,6],[7,8,9],[2,4,3],......long list]
我想得到一个输出,将子列表分组,假设在一组 7 个子列表中,那么输出将是这样的:
L1 = [1,2,3]
L2 = [4,5,6]
L3 = [7,8,9]
up to L7
then process those 7 lists separately
and then start again....
L1 = [x,x,x] this L1 would be (obviously) the 8th sub-list in the big list "List"
L2 = [x,x,x] this would be the 9th sub-list....and so on
我不知道我是否应该这样称呼它,但是,这就像制作 7 个子列表的"块"。
它有可能以快速有效的方式实现吗?
你可以通过切片来做到这一点。有关更多详细信息,请参阅解释 Python 的切片表示法。
list = [[1,2,3],[4,5,6],[7,8,9],[2,4,3], ... ]
for i in range(0, len(list), 7):
L1, L2, L3, L4, L5, L6, L7 = list[i:i+7]
...
注意:列表的长度必须是 7 的倍数才能执行此操作。如果没有,请附加尽可能多的 None
s 以确保它可以被 7 整除。