美文网首页
python 单个list分成N个长度一样list

python 单个list分成N个长度一样list

作者: 戒灵 | 来源:发表于2021-01-07 15:46 被阅读0次

    注:python 单个list分成N个长度一样list, 若最后长度不够,亦当成一个列表输出
    例如


    list.png

    代码如下:

    列表a长度为10,分成长度为3的多个列表

    a = [1,2,3,4,5,6,7,8,9,10]
    for i in range(0,len(a),3):
        print (a[i:i+3])
    

    相关文章

      网友评论

          本文标题:python 单个list分成N个长度一样list

          本文链接:https://www.haomeiwen.com/subject/fsmzoktx.html