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