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 …
0
votes

Python: item for item until stopterm in item?

I'd go with Steven Huwig's or …
5
votes

What’s the most pythonic way of testing that inputs are well-formed numbers

In Python 2.6 and 3.0, a type hierarchy of numeric abstract data types has been added, so you could perform your check as: …
1
vote

How come my class is behaving like a static class?

As others have pointed out, your problem is that fileList is a class variable which you are mutating. However its worth noting another potential pitfall in your code that could lead to a si …
9
votes

Boolean ‘and’ in Python

As pointed out, "&" in python performs a bitwise and operation, just as it does in C#. and is the appropriate equivalent to the && operator. Since we'r …
10
votes

How do I execute a string containing Python code in Python?

For statements, use exec ie. >>> mycode = 'print "hello …
18
votes

Are there stack based variables in Python?

Yes and no. The object will get destroyed after you leave foo (as long as nothing else has a reference to it), but whether it is immediate or not is an implementation detail, and will vary. …
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 …
1
vote

Python: update a list of tuples… fastest method

You'd probably be best served by some form of tree here (preserving sorted order while allowing O(log n) replacements.) There is no builtin balanaced tree type, but you can find many third party e …
6
votes

Removing redundant symbols from string

Note that the seperator symbols used vary from country to country. In some cultures, "." is used to seperate groups, and "," indicates a decimal point for instance. If you're parsing user-entered …
0
votes

Recursion - Python, return value question

Nothing's being implicitely returned - when n=0, the function is entering the if statement, and returning 1 directly from the return 1 statement. However, this isn't the point at which …