摘要: 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_ 阅读全文
posted @ 2019-11-07 11:13 吴思老 阅读(22471) 评论(0) 推荐(1) 编辑