itertools is a module for the Python language which contains high level functional constructs for working with iterable objects and generators.
3
votes
2answers
73 views
More efficient way to get integer permutations?
I can get integer permutations like this:
myInt = 123456789
l = itertools.permutations(str(myInt))
[int(''.join(x)) for x in l]
Is there a more efficient way to get integer permutations in Python, ...
0
votes
2answers
46 views
Why is python itertools “consume” recipe faster than calling next n times?
In the python documentation for itertools it provides the following "recipe" for advancing an iterator n steps:
def consume(iterator, n):
"Advance the iterator n-steps ahead. If n is none, ...
1
vote
1answer
25 views
Conditionals and itertools.groupby issue
I am using groupby to parse a list of words and organize them into lists by their length. For example:
from itertools import groupby
words = ['this', 'that', 'them', 'who', 'what', 'where', ...
0
votes
1answer
31 views
unable to call a function inside an iter chain in python list comprehension
I am using the following iter chain, to generate a list -
from itertools import chain
from utils import my_func // custom function written that performs a function.
a = list(chain.from_iterable((u, ...
1
vote
3answers
57 views
How can I compare for equality the values of two lists in one loop?
So I want to make this so I can check if another code is working, but I keep getting this error:
'list index out of range'
For the following code:
for L1[i] in range(0, len(L1)):
if ...
-3
votes
2answers
61 views
Product method in c#
I am working with python, and I am implementing my code to c# and in python there is method "product", anyone knows if there is something similar in c#? if not maybe someone can put me on a track of ...
5
votes
3answers
107 views
Python: Generating All Pairwise-Unique Pairings
I am looking for a Pythonic method to generate all pairwise-unique unique pairings (where a pairing is a system consisting of pairs, and pairwise-unique indicates that (a,b) ≠ (b,a)) for a set ...
1
vote
2answers
34 views
Can python itertools.imap(func,p,q) work with a conditional test on the index (e.g. to get elements with odd indexes only)?
I have the following arrays
>>> a
array([0, 8, 0, 8, 0, 8])
>>> b
array([0, 6, 0, 6, 0, 6])
these represent the real and imaginary parts of a set of complex numbers.
I can ...
1
vote
1answer
14 views
List of combinations not directly accessible
When I create a list by calling the list function on an iterator that was itself produced with the itertools.combinations function, sometimes I get an error like the following:
*** Error in argument: ...
1
vote
4answers
107 views
Find the Highest Sum in a Combination of Numbers
Lets say I have this:
1A=6 2A=4.5 3A=6
1B=7 2B=6 3B=7.5
1C=6 2C=6.75 3C=9
I want to find the combination of numbers that yields the highest sum. None of the numbers before the letters can be ...
0
votes
1answer
26 views
generating binary numbers of size n as tuples : itertools.product(*[(0, 1)] * n)
I just found this instruction
itertools.product(*[(0, 1)] * n)
posted by PAG.
Can someone explain how it works?
I am trying to find a way of doing permutations without repetition of n tuples ...
-2
votes
0answers
22 views
Listing all possible lists out of two list's values
This is a problem that have bugged for months now.
So I have two lists, each of them containing their own items.
I want to produce new lists from these two, but the "order" of the items must remain ...
1
vote
1answer
58 views
Python Itertools: Complex “product”
1+3+9 = 13 = 1+3 = 4.
6+1+1+5 = 13 = 1+3 = 4.
9+9+4 = 22 = 2+2 = 4.
etc
Considering the previous examples, one could say that the possibilities of reduction to the number 4 goes up to infinity. ...
4
votes
2answers
81 views
itertools or functools for find-replace list in python
I have a set of strings that are sometimes invalid that I'd like to replace with particular better strings. I've been playing with functools and itertools and would like to try applying these to the ...
4
votes
2answers
97 views
N-D version of itertools.combinations in numpy
I would like implement itertools.combinations for numpy. Based on this discussion, I have a function that works for 1D input:
def combs(a, r):
"""
Return successive r-length combinations of ...
2
votes
1answer
105 views
Itertools for F#
I'm used to Python's itertools for doing functional things with iterators (F#: sequences) and wondered if there were equivalents in F# or a commonly used library since they're so handy.
The top tools ...
0
votes
1answer
36 views
Unable to use value from two iterators in same loop
I have the following python script where i want to take values from two iterators alternatively.
filename = "small"
with open(filename,'r') as plot_data:
main_dict = dict()
line_one = ...
0
votes
1answer
54 views
Split a python list without calling itertools' grouper function but get a error
In this code the grouper function works fine, however if I do it without calling the function. It throws a error
TypeError: izip_longest argument #1 must support iteration
from itertools import *
...
0
votes
2answers
46 views
How to search through a string to see if i can spell a word
For instance I have
x = "dsjcosnag"
y = "dog"
print(checkYinX(y,x))
>>true
So I think I would need to use a while loop as a counter for each of the letter in y, and then I can use itetools ...
0
votes
2answers
57 views
Iterate through sum combinations in Python 3
I'm look for a way to find all combinations of sums with elements of a Fibonacci sequence with a given limit which equal that same value. I know that combinations() from itertools is our best bet in ...
3
votes
2answers
92 views
Using itertools for recursive function application
I need a Python function iterate(f, x) that creates an iterator returning the values x, f(x), f(f(x)), f(f(f(x))), etc (like, e.g., Clojure's iterate). First of all, I was wondering: Does this ...
2
votes
1answer
65 views
Python Groupby statement
I mam trying to group the following details list,
details = [('20130325','B'), ('20130320','A'), ('20130325','B'), ('20130320','A')]
>>for k,v in ...
2
votes
2answers
72 views
sorting multiple lists in python based on sorting of a single list
I am a python newbie here, and I have been struck on a rather simple problem - and I am looking for the most efficient way to solve this. So, I have 5 lists as follows:
a,b,c,d,score
where the ...
3
votes
2answers
83 views
Performance of library itertools compared to python code
As answer to my question Find the 1 based position to which two lists are the same I got the hint to use the C-library itertools to speed up things.
To verify I coded the following test using ...
0
votes
1answer
69 views
product of variable number of range(n)'s
I am trying to understand how to write code that will output all the divisors of a number. The approach that I am most interested in taking begins with a function that returns a dictionary where the ...
0
votes
1answer
75 views
Python : Finding combinations in column and doing relative operations using index values
I need to find possible combinations (two pairs) in a list/column and perform a relative operation on relative column/list. Like, subtraction on values of the pairs.
Example
Input:
column 1 column2
...
1
vote
2answers
49 views
identify zeros in list of list python itertools
I have a look which looks like the following:
yyy=[(2.0, 3.4, 3.75), (2.0, 3.4, 0.0), (2.0, 3.4, 0.0), (2.0, 3.4, 3.5), (2.0, 3.4, 0.0)]
What I would like to do is identify if 0.0 is present in any ...
7
votes
2answers
182 views
Getting all keys in a dict that overlap with other keys in the same dict
I have a list comprehension that looks like this:
cart = [ ((p,pp),(q,qq)) for ((p,pp),(q,qq))\
in itertools.product(C.items(), repeat=2)\
if p[1:] == q[:-1] ]
C is a dict with ...
0
votes
5answers
156 views
working with HUGE lists in python
how can I manage a huge list of 100+ million strings?
How can i begin to work with such a huge list?
example large list:
cards = [
...
2
votes
2answers
55 views
Elegant way to obtain combinations for a list of iterables
I have a list of iterable objects, and I'm interested in obtaining all lists that consist of 0 or 1 items from each iterable (order is unimportant, so it's combinations not permutations I seek).
I ...
1
vote
1answer
91 views
python return lists of continuous integers from list
I have a list of integers, and I want to generate a list containing a list of all the continuous integers.
#I have:
full_list = [0,1,2,3,10,11,12,59]
#I want:
continuous_integers = [[0,1,2,3], ...
0
votes
2answers
66 views
django optimize merging querysets
For example, I have 2 querysets(it's just a dummy code):
q1=MyModel.objects.filter(visible=True)
q2=MyModel.objects.filter(published=True)
And i need to make single queryset or list having all ...
3
votes
2answers
193 views
paralellize loop over iter
I am having performance issues with my code.
step # IIII consumes hours of time. I used to materialize the
the itertools.prodct before, but thanks to a user I dont do pro_data = ...
1
vote
1answer
48 views
calculate individual frequencies for both elements of a pair of this 2 elements from a numpy matrix in python
Working with this numpy matrix:
>>> print matrix
[['L' 'G' 'T' 'G' 'A' 'P' 'V' 'I']
['A' 'A' 'S' 'G' 'P' 'S' 'S' 'G']
['A' 'A' 'S' 'G' 'P' 'S' 'S' 'G']
['G' 'L' 'T' 'G' 'A' 'P' 'V' 'I']]
...
4
votes
2answers
82 views
How to retrieve frequencies of the number of unique occurrences of pair letters for every possible pair of columns from a numpy matrix in python
I have a matrix like this using numpy matrix:
>>> print matrix
[['L' 'G' 'T' 'G' 'A' 'P' 'V' 'I']
['A' 'A' 'S' 'G' 'P' 'S' 'S' 'G']
['A' 'A' 'S' 'G' 'P' 'S' 'S' 'G']
['G' 'L' 'T' 'G' 'A' ...
0
votes
4answers
89 views
generating conditional product of lists in python (combinatorics)
I want to be able to generate a conditional product. So similar to this answer:
All combinations of a list of lists
I wanted to use itertools.product(*listOfLists). However, my problem is that the ...
0
votes
3answers
95 views
Explain the use of yields in this Game of Life implementation
In this PyCon talk, Jack Diederich shows this "simple" implementation of Conway's Game of Life. I am not intimately familiar with either GoL or semi-advanced Python, but the code seems quite easy to ...
7
votes
2answers
162 views
Equivalent Nested Loop Structure with Itertools
Python's succint syntax through its batteries allows verbose code line to be expressed in readable one liners. Consider the following examples
====================================================|
...
0
votes
3answers
40 views
How to use itertools to output results of only a certain length
Suppose I have a list of bytes (x00 to xFF). How can I use itertools to return only permutations that have length of X.
So for example I want all permutations with length 3, then I'll get
...
2
votes
2answers
199 views
itertools.groupby: iterate over groups pairwise
How can I iterate over groupby results in pairs? What I tried isn't quite working:
from itertools import groupby,izip
groups = groupby([(1,2,3),(1,2),(1,2),(3,4,5),(3,4)],key=len)
def ...
3
votes
1answer
146 views
How do I iterate over a large number of tuples of integers in the order of their sum?
I'm using itertools.combinations() to iterate over tuples of integers.
I am interested in the tuple with the lowest sum that satisfies some conditions:
def findLowestNiceTuple:
for tup in ...
1
vote
2answers
81 views
Python itertools groupby not grouping as I expect
Suppose I have a string like so:
st='''Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Line 10
Line 11
Line 12
Line 13
Line 14'''
# may be really big...
Now suppose I want a LoL ...
1
vote
2answers
34 views
Permutations in python3
I can't figure out how to get permutations to return the actual permutation and not
I tried a lot of different things to no avail. The code I used was from itertools import permutations and then ...
0
votes
1answer
83 views
Python write out itertools
I would like to manually write out what itertools does in one line so that I can attempt to use multiple strings to work through the function quicker. Right now this function works, I just need to ...
0
votes
3answers
70 views
Itertools to create combinations of Ts and Hs as strings in python
I'm trying to use itertools to create pairs of all possible combinations of three coin tosses, e.g., ['HHH', 'TTT'], ['HHH', 'THH'] .. [TTT', 'HTH'], .. , etc. I want to access the pairs as ...
0
votes
4answers
222 views
memory dump using Python
I have small program written for me in Python to help me generate all combinations of passwords from a different sets of numbers and words i know for me to recover a password i forgot, as i know all ...
2
votes
3answers
90 views
more efficient use of itertools.groupby()
I am trying to enhance my knowledge of the itertools library, since it's so generally useful. To that end, I'm trying to solve an interview puzzler I came across. A large portion of it involves ...
1
vote
3answers
116 views
How do I convert Python's itertools.product library from a list comprehension to normal for loops?
According to http://docs.python.org/2/library/itertools.html#itertools.product the following function is equivalent to using their library (I removed a few things I don't need from it):
def ...
91
votes
6answers
3k views
All permutations of a Windows license key
I need to apply for a Windows 8 upgrade for my laptop, for which I need the Windows 7 license key on the underside of the laptop.
Because Microsoft decided in their infinite wisdom to create license ...
0
votes
1answer
36 views
Creating an iterable of dictionaries from an iterable of tuples
Let's say we have the following data
all_values = (('a', 0, 0.1), ('b', 1, 0.5), ('c', 2, 1.0))
from which we want to produce a list of dictionaries like so:
[{'location': 0, 'name': 'a', 'value': ...



