python如何将数组分成几个区间,取每个区间的最大值存到另一个数组里
发布时间:2020-05-25 00:37:31 所属栏目:Python 来源:互联网
导读:python如何将数组分成几个区间,取每个区间的最大值存到另一个数组里
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 第一种方法:
# coding:utf-8
"""
黄哥python远程视频培训班
https://github.com/pythonpeixun/article/blob/master/index.md
黄哥python培训试看视频播放地址
https://github.com/pythonpeixun/article/blob/master/python_shiping.md
咨询qq:1465376564
"""
lst = [1,2,3,4,5,6,7,8,9,1,0]
def group(lst,n):
num = len(lst) % n
zipped = zip(*[iter(lst)] * n)
return zipped if not num else zipped + [lst[-num:],]
tmp = group(lst,3)
max_lst = [max(item) for item in tmp]
print max_lst
#[3,2]
第二种方法
# coding:utf-8
"""
黄哥python远程视频培训班
https://github.com/pythonpeixun/article/blob/master/index.md
黄哥python培训试看视频播放地址
https://github.com/pythonpeixun/article/blob/master/python_shiping.md
咨询qq:1465376564
"""
def group(seq,size):
def take(seq,n):
for i in xrange(n):
yield seq.next()
if not hasattr(seq,'next'):
seq = iter(seq)
while True:
x = list(take(seq,size))
if x:
yield x
else:
break
lst = [1,0]
lst_group = group(lst,3)
max_lst = [max(item) for item in list(lst_group)]
print max_lst
以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
