这里需要导入
from more_itertools import chunked
chunked(iterable, n)
chunked
将一个可迭代对象等分成n个list,第n个list的长度可能小于之前的。
l=[i for i in range(36)] [sum(x) / len(x) for x in chunked(l,12)]
list内容按长度等分
原文:http://www.cnblogs.com/laresh/p/6101924.html