Tagged Questions
98
votes
14answers
31k views
How do you split a list into evenly sized chunks in Python?
I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, and when the second ...
35
votes
12answers
4k views
What is the most “pythonic” way to iterate over a list in chunks?
I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a list ...
4
votes
7answers
2k views
splitting a list of arbitrary size into only roughly N-equal parts
what is the best way to divide a list into roughly equal parts? for example, if I have a list with 54 elements and i want to split it into 3 roughly equal parts? I'd like the parts to be as even as ...
3
votes
3answers
151 views
Find the sum of subsets of a list in python
This is probably very simple and I'm overlooking something...
I have a long list of integers, in this case representing daily visitors to a website. I want a new list of weekly visitors. So I need ...
2
votes
2answers
587 views
How do you split a csv file into evenly sized chunks in Python?
In a basic I had the next process.
import csv
reader = csv.reader(open('huge_file.csv', 'rb'))
for line in reader:
process_line(line)
See this related question. I want to send the process line ...
0
votes
2answers
256 views
Download Manager: How to re-construct chunks fetched by multiple connections
so i am developing my own download manager for educational purpose. I have multiple connections/threads downloading a file, each connection works on a particular range of the file. Now after they have ...
0
votes
1answer
152 views
Paging python lists in slices of 4 items [closed]
Possible Duplicate:
How do you split a list into evenly sized chunks in Python?
mylist = [1, 2, 3, 4, 5, 6, 7, 8, 9]
I need to pass blocks of these to a third party API that can only deal ...