Tagged Questions
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 ...
3
votes
3answers
150 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 ...