加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python如何将数组分成几个区间,取每个区间的最大值存到另一个数

发布时间:2020-12-17 17:15:36 所属栏目:Python 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 第一种方法:# coding:utf-8"""黄哥python远程视频培训班https://github.com/pythonpeixun/article/blob/master/index.md黄哥python培训试看视频播放

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

第一种方法:

# 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

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读