Search Results

0
votes

Do I have to cause an ValueError in Python

For the specific case where your list is a sequence of single-character strings you can get what you want by changing the list to be searched to a string in advance (eg. ''.join(chars)). Yo …
1
vote

Removing a subset of a dict from within a list

You could change your exclusion list to a set, then just use intersection to get the overlap. exclusion = set([3, 4, 5]) for key in exclusion.intersection(a): del a[key] …
2
votes

Automagically expanding a Python list with formatted output

Further to the given answers, note that you may want to special case the empty list case as "where rec_id in ()" is not valid SQL, so you'll get an error. Also be very careful …
5
votes

Combining two sorted lists in Python

There is a slight flaw in ghoseb's solution, making it O(n**2), rather than O(n). The probl …
11
votes

Removing duplicates from list of lists in Python

Do you care about preserving order / which duplicate is removed? If not, then: dict((x[0], x) for x in L).values() will do it. If you want to preserve order, and …
3
votes

Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)

To convert an existing list of lists to one where nothing is shared, you could recursively copy the list. deepcopy will not be sufficient, as it will copy the structure as-is, …