python 拆分大集合成多个小集合
2021/8/1 1:05:53
本文主要是介绍python 拆分大集合成多个小集合,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
使用python 将大的list 拆分成多个小的list:
def toChildList(bigList=[], count=None): # 一个大集合,count=要拆分的每个小集合里边的元素数量 listCollection = [] if len(bigList) < int(count): listCollection.append(bigList) return listCollection length = len(bigList) flag = True startIndex = 0 endIndex = count while flag: if startIndex < len(bigList): listCollection.append(bigList[startIndex:endIndex]) startIndex = startIndex + count endIndex = endIndex + count else: flag = False return listCollection if __name__ == '__main__': biglist = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n'] print("biglist length :", len(biglist)) childLists = toChildList(biglist, 5) print("childLists: ", childLists) print("childLists length: ", len(childLists))
结果:
这篇关于python 拆分大集合成多个小集合的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南
- 2024-12-20Python编程基础与进阶
- 2024-12-19Python基础编程教程
- 2024-12-19python 文件的后缀名是什么 怎么运行一个python文件?-icode9专业技术文章分享
- 2024-12-19使用python 把docx转为pdf文件有哪些方法?-icode9专业技术文章分享
- 2024-12-19python怎么更换换pip的源镜像?-icode9专业技术文章分享