Python 切分数组
Posted 部落格
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 切分数组相关的知识,希望对你有一定的参考价值。
Python 切分数组
将一个数组,均分为多个数组
代码
# -*- coding:utf-8 -*-
# py3
def list_split(items, n):
return [items[i:i+n] for i in range(0, len(items), n)]
if '__main__' == __name__:
list1 = ['s1', 's2', 's3', 's4', 's5', 's6', 's7']
list2 = list_split(list1, 3)
print(list2)
输出
[['s1', 's2', 's3'], ['s4', 's5', 's6'], ['s7']]
以上是关于Python 切分数组的主要内容,如果未能解决你的问题,请参考以下文章