Tagged Questions
7
votes
7answers
317 views
Python: how to add contents of iterable to set?
In Python, what is the "one [...] obvious way" to add all items of an iterable to an extant set?
6
votes
4answers
713 views
Is there an equivalent in Scala to Python's more general map function?
I know that Scala's Lists have a map implementation with signature (f: (A) => B):List[B] and a foreach implementation with signature (f: (A) => Unit):Unit but I'm looking for something that ...
6
votes
3answers
3k views
Length of generator output
Python provides a nice method for getting length of an eager iterable, len(x) that is. But I couldn't find anything similar for lazy iterables represented by generator comprehensions and functions. Of ...
5
votes
2answers
136 views
Unittest's assertEqual and iterables - only check the contents
Is there a 'decent' way in unittest to check the equality of the contents of two iterable objects?
I am using a lot of tuples, lists and numpy arrays and I usually only want to test for the contents ...
4
votes
4answers
397 views
Python: map in place
I was wondering if there is a way to run map on something. The way map works is it takes an iterable and applies a function to each item in that iterable producing a list. Is there a way to have map ...
3
votes
2answers
150 views
What's the shortest way to count the number of items in a generator/iterator?
If I want the number of items in an iterable without caring about the elements themselves, what would be the pythonic way to get that? Right now, I would define
def ilen(it):
return ...
3
votes
1answer
98 views
Creating a dictionary from two iterables and consuming both of them
Suppose I have two lists and I want to make a dictionary from them. Like:
>>> l = [1, 2, 3, 4, 5]
>>> x = ['a', 'b', 'c']
>>> dict(zip(l, x))
{1: 'a', 2: 'b', 3: 'c'}
...
3
votes
1answer
603 views
Emulating membership-test in Python: delegating __contains__ to contained-object correctly
I am used to that Python allows some neat tricks to delegate functionality to other objects. One example is delegation to contained objects.
But it seams, that I don't have luck, when I want to ...
2
votes
2answers
122 views
Python: check if an object is NOT an “array-type”
I'm looking for a way to test if an object is not of a "list-ish" type, that is - not only that the object is not iterable (e.g. - you can also run iter on a string, or on a simple object that ...
2
votes
2answers
268 views
Python __iter__ and for loops
As I understand it, I can use the for loop construction on an object with a __iter__ method that returns an iterator. I have an object for which I implement the following __getattribute__ method:
...
2
votes
3answers
348 views
Python filter / max combo - checking for empty iterator
(Using Python 3.1)
I know this question has been asked many times for the general question of testing if iterator is empty; obviously, there's no neat solution to that (I guess for a reason - an ...
2
votes
2answers
201 views
Handle iterable and non-iterable seamlessly
Could you let me know how I can optimize the following code?
def f(y, list_or_elem):
if getattr(list_or_elem, '__iter__'):
y = max(y, *list_or_elem)
else:
y = max(y, list_or_elem)
2
votes
5answers
340 views
Redirect print in Python: val = print(arg) to output mixed iterable to file
So lets say I have an incredibly nested iterable of lists/dictionaries. I would like to print them to a file as easily as possible. Why can't I just redirect print to a file?
val = print(arg)
gets ...
1
vote
3answers
357 views
ValueError: invalid literal for float() in Python
To all:
I have curious if someone can help me understand the error: ValueError: invalid literal for float(). I am getting this when I am passing a text file to a list then trying to convert this ...
1
vote
3answers
102 views
Python dictionary to sorted tuples, can this be done better?
I have an dictonary for my input with the following characteristics:
Each value will be either an integer, string or iterable (other than a string).
If the element is an iterable, each element in ...
1
vote
4answers
1k views
How to check if an object is iterable in python? [closed]
Possible Duplicate:
In python, how do I determine if a variable is Iterable?
How does one check if a Python object supports iteration, a.k.a an iterable object (see definition
Ideally I ...
1
vote
3answers
331 views
Check if all values of iterable are zero
Is there a good, succinct/built-in way to see if all the values in an iterable are zeros? Right now I am using all() with a little list comprehension, but (to me) it seems like there should be a more ...
1
vote
1answer
129 views
Expose __main__
is this legal in python?. Seems to work ...
Thanks
# with these lines you not need global variables anymore
if __name__ == '__main__':
import __main__ as main
else:
main = ...
1
vote
3answers
102 views
Python enumerate built-in error when using the start parameter
I'm modifying some code that calls enumerate on a list declared via a list comprehension e.g.
self.groups = [Groups(self, idx) for idx in range(n_groups)]
then later:
for idx, group in ...
0
votes
5answers
244 views
Convert Any Iterable to Array in Python
This just has to be a dupe, but I just didn't find any existing instance of this question...
What is the easiest way to convert any iterable to an array in Python (ideally, without importing ...
0
votes
0answers
385 views
circle detection in python
I am new to python. I prefer to learn it by experimenting. For 4 days I have been working on my cv.HoughCircle opencv function in python to detect a circle in a frame. But unfortunately I couldn't ...
0
votes
4answers
837 views
iterable long-object?
This is a problem from euler-project. No.13
import math
#no.13
sum = []
number = 0
a = ...