38
votes
47answers
2k views
What’s the best name for a non-mutating “add” method on an immutable collection?
Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question.
Suppose I have an immutable list type. It has an operation Foo(x) which …
17
votes
3answers
990 views
Accessing the index in Python for loops
Anyone knows how to access the index itself so for a list like this:
ints = [8,23,45,12,78]
when I loop through it using a for loop, how do I make access the for loop index, fro …
16
votes
3answers
269 views
Is there a way to loop through a sub section of a list in Python
So for a list that has 1000 elements, I want to loop from 400 to 500. How do you do it?
I don't see a way by using the for each and for range techniques.
15
votes
9answers
551 views
Python list.index question
Why does list.index throws an exception instead of returning a value like say -1? What's the idea behind this?
To me it looks cleaner to deal with special values, etc than excepti …
15
votes
22answers
2k views
In Python, what is the fastest algorithm for removing duplicates from a list so that all elements are unique *while preserving order*?
For example:
>>> x = [1, 1, 2, 'a', 'a', 3]
>>> unique(x)
[1, 2, 'a', 3]
Assume list elements are hashable.
Clarification: The result should keep the first du …
14
votes
8answers
8k views
Python: What is the best way to check if a list is empty?
For example, if passed the following:
a = []
How do I check to see if a is empty?
13
votes
9answers
1k views
Subtracting 2 lists in Python
Right now I have vector3 values represented as lists. is there a way to subtract 2 of these like vector3 values, like
[2,2,2] - [1,1,1] = [1,1,1]
Should I use tuples?
If none o …
11
votes
10answers
2k views
How do you split a list into evenly sized chunks in Python?
I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, …
11
votes
7answers
218 views
Passing a list while retaining the original
So I'm teaching myself Python, and I'm having an issue with lists. I want to pass my function a list and pop items off it while retaining the original list. How do I make python "i …
10
votes
10answers
762 views
What is the most “pythonic” way to iterate over a list in chunks?
I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it …
9
votes
7answers
533 views
In Python, how can you easily retrieve sorted items from a dictionary?
Dictionaries unlike lists are not ordered (and do not have the 'sort' attribute). Therefore, you can not rely on getting the items in the same order when first added.
What is the …
8
votes
9answers
350 views
Split a list into parts based on a set of indexes in Python
What is the best way to split a list into parts based on an arbitrary number of indexes? E.g. given the code below
indexes = [5, 12, 17]
list = range(20)
return something like t …
8
votes
7answers
501 views
Confusing […] List in Python: What is it?
So I was writing up a simple binary tree in Python and came across [...]
I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an i …
8
votes
5answers
542 views
Is there a zip-like method in .Net?
In Python there is a really neat function called zip which can be used to iterate through two lists at the same time:
list1 = [1, 2, 3]
list2 = ["a", "b", "c"]
for v1, v2 in zip(l …
8
votes
2answers
649 views
A Transpose/Unzip Function in Python
I have a list of 2-item tuples and I'd like to convert them to 2 lists where the first contains the first item in each tuple and the second list holds the second item.
For example …
