标签: python
我有一个如下所示的列表:
test = [1,2,3,4,65,66,67,68,69,72,85,86,87,88,89,91]
我想返回包含序号的多个列表:
[1,2,3,4] [65,66,67,68,69] [72] [85,86,87,88,89] [91]
在Python中有一种简单的方法吗?