vote up 10 vote down star
5

What would the code monkeys here suggest is the best possible way to check if a string can be represented as a number in Python? The function I currently have right now is:

def is_number(s):
    try:
        float(s)
        return True
    except ValueError:
        return False

Which, not only is ugly and slow, seems clunky. However I haven't found a better method because calling float in the main function is even worse. Any ideas?

flag
so, should we tag this as offensive? – hop Dec 9 '08 at 20:29
Argumentative maybe -- but only to very thin-skinned Pythonistas. One person's ugly is another person's smelly. – S.Lott Dec 9 '08 at 21:37
i meant the "code monkey" part... catb.org/jargon/html/C/code-monkey.html – hop Dec 9 '08 at 22:41
1  
@hop: Didn't know "code monkey" had a derogatory sense. I guess I don't get out much. – S.Lott Dec 10 '08 at 0:20
1  
This is awsome code, what ya worried about? – Fire Crow May 23 at 18:38

9 Answers

vote up 16 vote down check

"Which, not only is ugly and slow"

I'd dispute both.

A regex or other string parsing would be uglier and slower.

I'm not sure that anything much could be faster than the above. It calls the function and returns. Try/Catch doesn't introduce a much overhead because the most common exception is caught without an extensive search of stack frames.

The issue is that any numeric conversion function has two kinds of results

  • A number, if the number is valid
  • A status code (e.g., via errno) or exception to show that no valid number could be parsed.

C (as an example) hacks around this a number of ways. Python lays it out clearly and explicitly.

I think your code for doing this is perfect.

link|flag
vote up -1 vote down

Using the int() method would be about the same as that I suppose. Otherwise I'd guess you'd have to loop through the characters of the string, and that is most likely slower

link|flag
The Int method misses out on everything with a period or comma, which are still valid numbers! :) but yeah. – Daniel Goldberg Dec 9 '08 at 20:11
vote up 20 vote down

Ah, here we are. Use the isdigit() function for string objects.

a = "03523"
a.isdigit()

True

b = "963spam"
b.isdigit()

False

String methods

There's also something on Unicode strings, which I'm not too familiar with Unicode - Is decimal/decimal

link|flag
2  
However, this won't work for Hexadecimal. – Nico Dec 9 '08 at 20:17
4  
Nor does it work for numbers with decimal places like 1.2 – Daniel Goldberg Dec 9 '08 at 21:48
1  
That's a negative on negatives as well – intrepion Oct 23 at 7:05
vote up 5 vote down

Casting to float and catching ValueError is probably the fastest way, since float() is specifically meant for just that. Anything else that requires string parsing (regex, etc) will likely be slower due to the fact that it's not tuned for this operation. My $0.02.

link|flag
2  
Your "2e-2" dollars are a float too (an additional argument for using float :) – ΤΖΩΤΖΙΟΥ Dec 9 '08 at 22:59
vote up 0 vote down

If you want to know if the entire string can be represented as a number you'll want to use a regexp (or maybe convert the float back to a string and compare it to the source string, but I'm guessing that's not very fast).

link|flag
vote up 2 vote down

Your code looks fine to me.

Perhaps you think the code is "clunky" because of using exceptions? Note that Python programmers tend to use exceptions liberally when it improves code readability, thanks to its low performance penalty.

link|flag
vote up 5 vote down

Which, not only is ugly and slow, seems clunky.

It may take some getting used to, but this is the pythonic way of doing it. As has been already pointed out, the alternatives are worse. But there is one other advantage of doing things this way: polymorphism.

The central idea behind duck typing is that "if it walks and talks like a duck, then it's a duck." What if you decide that you need to subclass string so that you can change how you determine if something can be converted into a float? Or what if you decide to test some other object entirely? You can do these things without having to change the above code.

Other languages solve these problems by using interfaces. I'll save the analysis of which solution is better for another thread. The point, though, is that python is decidedly on the duck typing side of the equation, and you're probably going to have to get used to syntax like this if you plan on doing much programming in Python (but that doesn't mean you have to like it of course).

One other thing you might want to take into consideration: Python is pretty fast in throwing and catching exceptions compared to a lot of other languages (30x faster than .Net for instance). Heck, the language itself even throws exceptions to communicate non-exceptional, normal program conditions (every time you use a for loop). Thus, I wouldn't worry too much about the performance aspects of this code until you notice a significant problem.

link|flag
vote up 0 vote down

Here's my simple way of doing it. Let's say that I'm looping through some strings and I want to add them to an array if they turn out to be numbers.

try:
    myvar.append( float(string_to_check) )
except:
    continue

Replace the myvar.apppend with whatever operation you want to do with the string if it turns out to be a number. The idea is to try to use a float() operation and use the returned error to determine whether or not the string is a number.

link|flag
vote up -3 vote down
def is_number(s):
  if hasattr(s, '__int__'):
    return True
  else:
    return False
link|flag
1  
You must be after the necromancer badge. The argument s is supposed to be a string and the purpose of the function is to test if the string is a valid representation of a number. Your function tests if s has an __int__ attribute. Strings don't have such an attribute. AND it's ugly -- the code body should be one line: return hasattr(s, '__int__') – John Machin Aug 11 at 14:57
1  
Not only that, ints are not the only number out there. – Daniel Goldberg Aug 14 at 7:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.