Python分割list

對於一個很大的列表,例若有超過一萬個元素的列表,假如須要對列表中的每個元素都進行一個複雜且耗時的計算,用單線程處理起來會很慢,這時有必要利用多線程進行處理,處理以前首先須要對大的列表進行分割,分割成小的列表,下面給出本身寫的一個分割列表的方法:多線程

其中,each爲每一個列表的大小,len(ls)/eachExact能夠避免整除時向下取整,形成總的分組數量的減小。app

注意:分組數並非簡單的len(ls)/each+1便可,由於有可能恰好整除,沒有餘數。ide

 1     def divide(ls,each):
 2         dividedLs=[]
 3         eachExact=float(each)
 4         groupCount=len(ls)/each
 5         groupCountExact=len(ls)/eachExact
 6         start=0
 7         for i in xrange(groupCount):
 8             dividedLs.append(ls[start:start+each])
 9             start=start+each
10         if groupCount<groupCountExact:#假若有餘數,將剩餘的全部元素加入到最後一個分組
11             dividedLs.append(ls[groupCount*each:])
12         return dividedLs    
相關文章
相關標籤/搜索