2
votes
2answers
68 views

Common baseclass for iterables?

I'm trying to create a method which only accepts an iterable parameter, such as list, tuple, set or dict. Here's my code: class MjmMenuControl(MjmBaseMenu): def __init__(self, items=None): ...
0
votes
1answer
71 views

how to use__iter__ to dynamically create objects in python

ok, so i am trying to print all the car objects... I have 2 questions: is the way i am implementing '__iter__' acceptable? 2. i am getting the results i want now, but as you can probably tell, the ...
1
vote
1answer
46 views

Exhausted Iterator, But no Error in For Loop [duplicate]

(In Python 3.2) miters = map(abs,(-1,2,5)) for i in miters: print(i) 1 2 5 next(miters) --> StopIteration for i in miters: print(i) --> ?? Nothing Happens.. Why can't I get ...
0
votes
1answer
65 views

Stacks iteration python3

Ok so im trying to input a word in a stack and I want to print all of them after I input a string. So I can only print them one at a time. I tried using a for loop outside but Stacks are apparently ...
1
vote
5answers
68 views

Generating a path from an iterable of points

Suppose I have a set {a, b, c, d}. I want to create a "path" from it, which is a generator that yields (a, b), then (b, c), then (c, d) (of course set is unordered, so any other path through the ...
2
votes
6answers
255 views

Splitting a string into 2-letter segments

I have a string, which I need to split into 2-letter pieces. For example, 'ABCDXY' should become ['AB', 'CD', 'XY']. The behavior in the case of odd number of characters may be entirely arbitrary ...
2
votes
1answer
65 views

Looping over Iterator

Sorry if this is a silly question, but I could not make my mind up how it could work. I defined an iterator which has a structure like that (it is a bit more complicated, but the model will do the ...
1
vote
2answers
101 views

Iterator for both lists and dictonaries

I have a parameter dictionary holding complex data composed of strings, lists and other dictionaries. Now i want to iterate through this data. My problem is the way - the best practice - for having ...
16
votes
7answers
699 views

custom dict that allows delete during iteration

UPDATED based on Lennart Regebro's answer Suppose you iterate through a dictionary, and sometimes need to delete an element. The following is very efficient: remove = [] for k, v in dict_.items(): ...
6
votes
3answers
151 views

how to check if an iterable allows more than one pass?

In Python 3, how can I check whether an object is a container (rather than an iterator that may allow only one pass)? Here's an example: def renormalize(cont): ''' each value from the ...
3
votes
4answers
820 views

exhausted iterators - what to do about them?

(In Python 3.1) (Somewhat related to another question I asked, but this question is about iterators being exhausted.) # trying to see the ratio of the max and min element in a container c filtered = ...
2
votes
3answers
855 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 ...
6
votes
2answers
3k views

understanding zip function

All discussion is about python 3.1.2; see Python docs for the source of my question. I know what zip does; I just don't understand why it can be implemented like this: def zip(*iterables): # ...
1
vote
1answer
1k views

Python: binary tree traversal iterators without using conditionals

I am trying to create a module in python for iterating over a binary tree using the 4 standard tree traversals (inorder, preorder, postorder and levelorder) without using conditionals and only using ...
9
votes
1answer
7k views

Iterating over dictionary items(), values(), keys() in Python 3

If I understand correctly, in Python 2, iter(d.keys()) was the same as d.iterkeys(). But now, d.keys() is a view, which is in between the list and the iterator. What's the difference between a view ...
6
votes
2answers
2k views

What substitutes xreadlines() in Python 3?

In Python 2, file objects had an xreadlines() method which returned an iterator that would read the file one line at a time. In Python 3, the xreadlines() method no longer exists, and realines() still ...
10
votes
3answers
5k views

Does readlines() return a list or an iterator in Python 3?

I've read in "Dive into Python 3" that "The readlines() method now returns an iterator, so it is just as efficient as xreadlines() was in Python 2". See here: ...
8
votes
3answers
4k views

Number of lines in csv.DictReader

I have a csv DictReader object (using Python 3.1), but I would like to know the number of lines/rows contained in the reader before I iterate through it. Something like as follows... myreader = ...
2
votes
2answers
300 views

Py3k memory conservation by returning iterators rather than lists

Many methods that used to return lists in Python 2.x now seem to return iterators in Py3k Are iterators also generator expressions? Lazy evaluation? Thus, with this the memory footprint of python is ...
4
votes
2answers
1k views

Python 3.0 - dict methods return views - why?

dict methods dict.keys(), dict.items() and dict.values() return “views” instead of lists. http://docs.python.org/dev/3.0/whatsnew//3.0.html First of all how is a view different from an ...