Tagged Questions

11
votes
4answers
219 views

Simple idiom to break an n-long list into k-long chunks, when n % k > 0?

In Python, it is easy to break an n-long list into k-size chunks if n is a multiple of k (IOW, n % k == 0). Here's my favorite approach (straight from the docs): >>> k = 3 >>> n = ...
8
votes
1answer
130 views

Is itertools thread-safe?

For instance, if I create an iterator using chain, can I call it on multiple threads? Note that thread-safety that relies on the GIL is acceptable, but not preferable. (Note that this is a bit ...
8
votes
6answers
536 views

Python how to read N number of lines at a time

I am writing a code to take an enormous textfile (several GB) N lines at a time, process that batch, and move onto the next N lines until I have completed the entire file. (I don't care if the last ...
7
votes
3answers
93 views

Why do I get a MemoryError with itertools.product?

I would expect the following snippet to give me an iterator yielding pairs from the Cartesian product of the two input iterables: $ python Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53) [GCC ...
7
votes
3answers
244 views

How to split a list into subsets with no repeating elements in python

I need code that takes a list (up to n=31) and returns all possible subsets of n=3 without any two elements repeating in the same subset twice (think of people who are teaming up in groups of 3 with ...
7
votes
3answers
87 views

Creating a matrix of options using itertools

I am trying to produce a matrix of True and False values, which shows all the permutations for a given number of choices. So for 5 choices you would have the following output. F F F F F T F F F F T ...
6
votes
4answers
299 views

permutations with unique values

itertools.permutations generates where its elements are treated as unique based on their position, not on their value. So basically I want to avoid duplicates like this: >>> ...
6
votes
3answers
247 views

izip_longest in itertools: what's going on here?

I'm struggeling to understand how the below code works. It's from http://docs.python.org/library/itertools.html#itertools.izip_longest, and is the pure-python equivalent of the izip_longest iterator. ...
6
votes
5answers
329 views

Converting a list of lists to a tuple in Python

I have a list of lists (generated with a simple list comprehension): >>> base_lists = [[a, b] for a in range(1, 3) for b in range(1, 6)] >>> base_lists ...
5
votes
6answers
175 views

String coverage optimization in Python

I have this initial string. 'bananaappleorangestrawberryapplepear' And also have a tuple with strings: ('apple', 'plepe', 'leoran', 'lemon') I want a function so that from the initial string and ...
5
votes
3answers
254 views

How to use itertools.groupby when the key value is in the elements of the iterable?

To illustrate, I start with a list of 2-tuples: import itertools import operator raw = [(1, "one"), (2, "two"), (1, "one"), (3, "three"), (2, "two")] for key, grp in ...
5
votes
2answers
261 views

What should itertools.product() yield when supplied an empty list?

I guess it's an academic question, but the second result does not make sense to me. Shouldn't it be as thoroughly empty as the first? What is the rationale for this behavior? from itertools import ...
5
votes
4answers
443 views

Is there an equivalent of Python's itertools for Java?

I'm searching for a library (preferably generic) that generates iterable combinations and permutations of data contained in collections. Cartesian product would also be nice. The best way of ...
5
votes
2answers
731 views

Can anyone provide a more pythonic way of generating the morris sequence?

I'm trying to generate the morris sequence in python. My current solution is below, but I feel like I just wrote c in python. Can anyone provide a more pythonic solution? def morris(x): a = ['1', ...
4
votes
2answers
118 views

Does python have a built-in function for interleaving generators/sequences?

I noticed that itertools does not (it seems to me) have a function capable of interleaving elements from several other iterable objects (as opposed to zipping them): def leaf(*args): return ...
4
votes
1answer
105 views

izip_longest in itertools: How does rasing IndexError inside the iterator work?

In this question @lazyr asks how the following code of izip_longest iterator from here works: def izip_longest_from_docs(*args, **kwds): # izip_longest('ABCD', 'xy', fillvalue='-') --> Ax By ...
4
votes
7answers
306 views

How do I reverse an itertools.chain object?

My function creates a chain of generators: def bar(num): import itertools some_sequence = (x*1.5 for x in range(num)) some_other_sequence = (x*2.6 for x in range(num)) chained = ...
4
votes
5answers
577 views

itertools product speed up

I use itertools.product to generate all possible variations of 4 elements of length 13. The 4 and 13 can be arbitrary, but as it is, I get 4^13 results, which is a lot. I need the result as a Numpy ...
4
votes
1answer
196 views

Pythonic way of copying an iterable object

For a small project I'm working on I need to cycle through a list. For each element of this cycle I have to start another cycle through the same list, with the former element as first element of the ...
4
votes
4answers
209 views

efficient list mapping in python

I have the following input: input = [(dog, dog, cat, mouse), (cat, ruby, python, mouse)] and trying to have the following output: outputlist = [[0, 0, 1, 2], [1, 3, 4, 2]] outputmapping = {0:dog, ...
3
votes
2answers
75 views

All possible (monogamous) pairings of two lists (of boys and girls)

I have these two lists: boys = [1,2,3] girls = [1,2,3] How would you build all possible (monogamous) pairings [boy, girl]? With only 3 of both boys and girls, I think this is the list of all the ...
3
votes
3answers
163 views

Is there any case in python when using a while loop would be best practice?

I'm doing some python benchmarking, and I've discovered that repeat(None) is much faster than while True or while 1: >>> def bench7(): ... foo = 0 ... a = time() ... for i in ...
3
votes
2answers
105 views

Is there anything like Python Itertools in Perl?

Python has great module for working with iterators called itertools Is there any analog in Perl? I know about Object-Iterate but it has only imap and igrep.
3
votes
3answers
92 views

Generator which leaves a placeholder at the beginning and at the end of the input iterator intact

Let's take a list as an example: a = [255, 255, 1, 255, 255, 255, 1, 2, 255, 255, 2, 255, 255, 3, 255, 3, 255, 255, 255] 255 is a special value in it. It's a placeholder. I've made a generator ...
3
votes
2answers
162 views

Combining itertools and multiprocessing?

I have a 256x256x256 Numpy array, in which each element is a matrix. I need to do some calculations on each of these matrices, and I want to use the multiprocessing module to speed things up. The ...
3
votes
2answers
127 views

Prevent memory error in itertools.permutation

Firstly I would like to mention that i have a 3 gb ram. I am working on an algorithm that is exponential in time on the nodes so for it I have in the code perm = list( ...
3
votes
1answer
128 views

Fill dates from Python groupby

I have a collection of news article objects which I wish to display archived by distinct month. I've used itertools.groupby to create a list of Python objects ordered in such a way: news_grouped = [ ...
3
votes
3answers
710 views

Python: izip vs zip

When is it better to use zip instead of itertools.izip?
3
votes
2answers
144 views

Optimize generator for multivariate polynomial exponents

HI, I'm try to find a general expression to obtain exponents of a multivariate polynomial of order order and with n_variables, like the one presented in this reference in equation (3). Here is my ...
3
votes
1answer
237 views

Generating subsets of a permuted wordlist in Python

I have a list of words and I need to generate all possible permutations of these, with one caveat. I currently use the following code: from itertools import permutations wordlist = ["word1", ...
3
votes
1answer
196 views

python itertools skipping ahead

I have a list of lists. Using itertools, I am basically doing for result in product([A,B],[C,D],[E,F,G]): # test each result and the result is the desired product, with each result containing ...
3
votes
1answer
244 views

Generate a list of length n with m possible elements

I need to generate a ton of lists in Python. Every list is of length 13, and I have 4 possible values that can go into each element. These are [1, -1, i, -i], but it could be whatever. Thus I should ...
3
votes
4answers
673 views

How to write a pager for Python iterators?

I'm looking for a way to "page through" a Python iterator. That is, I would like to wrap a given iterator iter and page_size with another iterator that would would return the items from iter as a ...
3
votes
2answers
682 views

Working with itertools.product and lists in python 3

I'm trying to create a possible list of codons given a protein sequence. Basically, the script i'm trying to create will process a given string input and outputs a possible combinations of another ...
3
votes
3answers
455 views

concurrently iterating through even and odd items of list

I have a list of items (which are HTML table rows, extracted with Beautiful Soup) and I need to iterate over the list and get even and odd elements (I mean index) for each loop run. My code looks ...
2
votes
4answers
94 views

How to join/merge two generators output using python

I have two generators g1 and g2 for line in g1: print line[0] [a, a, a] [b, b, b] [c, c, c] for line1 in g2: print line1[0] [1, 1, 1] [2, 2, 2] [3, 3, 3] for line in itertools.chain(g1, ...
2
votes
5answers
82 views

itertools and strided list assignment

Given a list, e.g. x = [True]*20, I want to assign False to every other element. x[::2] = False raises TypeError: must assign iterable to extended slice So I naively assumed you could do something ...
2
votes
1answer
53 views

Python - corner coordinates of n-dimensional cube

I'm trying to get the coordinates of an n-dimensional cube from a list of the mins and maxes for each dimension. I'm able to get the corners using for loops but I would like to generalize for any ...
2
votes
2answers
113 views

A combinations_with_replacement function in fortran?

I wrote a small module in python for get all the possibilities of x products that fit into y total cost. The module runs fine, but slow. It takes about six hours to calculate six products up to 30 ...
2
votes
3answers
70 views

working with combinations object in python

>>> import itertools >>> n = [1,2,3,4] >>> combObj = itertools.combinations(n,3) >>> >>> combObj <itertools.combinations object at ...
2
votes
2answers
79 views

Pythonic way to emulate itertools.product in python 2.4

I have a python 3 script that uses itertools.product, but I need to be able to run it on a machine that only has python 2.4 installed. Since itertools.product is new in python 2.6, I no longer have ...
2
votes
2answers
435 views

How to turn the result (in python) of itertools.permutations(“0123456789”) into list of strings

In Python, I am using list(itertools.permutations("0123456789")), and I am receiving (I as expected) a list of tuples of singled character strings. Is there a way to turn that result into a list of ...
2
votes
2answers
114 views

Does python have a non-lazy version of itertools.groupby?

I don't need the laziness of itertools.groupby. I just want to group my list into a dict of lists as such: dict([(a, list(b)) for a,b in itertools.groupby(mylist, mykeyfunc)]) Is there a standard ...
2
votes
2answers
513 views

In python: how to apply itertools.product to elements of a list of lists

I have a list of arrays and I would like to get the cartesian product of the elements in the arrays. I will use an example to make this more concrete... itertools.product seems to do the trick but I ...
2
votes
1answer
152 views

Is there a neater way to get the first occurrence of something?

I have a list which contains a number of things: lista = ['a', 'b', 'foo', 'c', 'd', 'e', 'bar'] I'd like to get the first item in the list that fulfils a predicate, say len(item) > 2. Is there ...
2
votes
1answer
884 views

PyObjC + Xcode 3.2 + Non-Apple Python

I want to get started trying to develop a few simple applications with PyObjC. I installed PyObjC and the Xcode templates. I know that PyObjC itself works, since I've run this script successfully. ...
2
votes
2answers
1k views

how do i filter an itertools chain() result?

in my views, if i import an itertools module: from itertools import chain and i chain some objects with it: franktags = Frank.objects.order_by('date_added').reverse().filter(topic__exact='art') ...
1
vote
3answers
84 views

What is the purpose in Python's itertools.repeat?

Every use I can think of for Python's itertools.repeat() class, I can think of another equally (possibly more) acceptable solution to achieve the same effect. For example: >>> (i for i in ...
1
vote
1answer
87 views

Python itertools.combinations() memory problems

I'm processing a huge number of combinations of items (from League of Legends), about 72 million, all of which are fed into a function that calculates how beneficial they are. We're trying to find ...
1
vote
1answer
99 views

itertools.groupby()

I have this data: self.data = list: [(1, 1, 5.0), (1, 2, 3.0), (1, 3, 4.0), (2, 1, 4.0), (2, 2, 2.0), ...

1 2