itertools is a module for the Python language which contains high level functional constructs for working with iterable objects and generators.
0
votes
1answer
19 views
Can someone please explain this error - “Runtime error: dictionary size changed during iteration”?
def find_the_best_solution(shipping_request, list, current_solution, best_shipping_solution):
if shipping_request == {}:
return current_solution
for item in shipping_request:
...
0
votes
1answer
21 views
how to extract summary list from itertools groupby for statement
Using python 3.2 In a nested list are two columns of input data: a species code in [0] and an observed value in [1] and from each row two additional columns, [2] and [3], of calculated values, for ...
0
votes
3answers
39 views
python “multiple” combine/chain list comprehension
I am quite new to python and I have been learning list comprehension alongside python lists and dictionaries.
So, I would like to do something like:
[my_functiona(x) for x in a]
..which works ...
3
votes
2answers
75 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
53 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
34 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
58 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
113 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
35 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
16 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
108 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
27 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
60 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
82 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
99 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
55 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
61 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
96 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
72 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
76 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
84 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
70 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
50 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
185 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
98 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
68 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
196 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
91 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
96 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
164 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
204 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
147 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
84 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
86 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
71 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
232 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
92 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 ...



