码迷,mamicode.com
首页 > 其他好文 > 详细

list内容按长度等分

时间:2016-11-25 16:42:53      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:长度   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)]

 

list内容按长度等分

标签:长度   lis   class   more   iterable   des   需要   color   tools   

原文地址:http://www.cnblogs.com/laresh/p/6101924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!