将列表分成相等部分的最佳方法

时间:2009-05-29 09:30:55

标签: python

  

可能重复:
  How do you split a list into evenly sized chunks in Python?

我有一个超过500个元素的列表。

我想将它分为5个列表,每个列表包含100个元素。

mylist = [1......................700]
if len(mylist) > 100:
       newlist1 = mylist[0:100]
       someothelist = mylist[100:]
       if len(someotherlist) > 100:
           newlist2 = someotherlist[0:100]
           someotherlist2 = mylist[100:]

使用迭代实现它的最佳方法是什么?

0 个答案:

没有答案