Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What 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

This seems clunky, but I haven't found a better method because calling float in the main function is even worse.

share|improve this question
1  
What's wrong with what your current solution? It's short, fast and readable. – Colonel Panic Mar 21 at 22:52

16 Answers

up vote 157 down vote accepted

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 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.

share|improve this answer

Use the isdigit() function for string objects.

a = "03523"
a.isdigit()

True

b = "963spam"
b.isdigit()

False

String Methods - isdigit()

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

share|improve this answer
17  
However, this won't work for Hexadecimal. – Nico Dec 9 '08 at 20:17
49  
Nor does it work for numbers with decimal places like 1.2 – Daniel Goldberg Dec 9 '08 at 21:48
55  
That's a negative on negatives as well – intrepion Oct 23 '09 at 7:05
18  
@DanielGoldberg: I think you need to go lookup the definition of "digit" – Jason9987 Sep 24 '11 at 22:05
30  
@Jason9987, it seems you need to reread the question. – Daniel Goldberg Oct 13 '11 at 17:42
show 12 more comments

There is one exception that you may want to take into account: the string 'NaN'

If you want is_number to return FALSE for 'NaN' this code will not work as Python converts it to its representation of a number that is not a number (talk about identity issues):

>>> float('NaN')
nan

Otherwise, I should actually thank you for the piece of code I now use extensively. :)

G.

share|improve this answer
Actually, NaN might be a good value to return (rather than False) if the text passed is not in fact a representation of a number. Checking for it is kind of a pain (Python's float type really needs a method for it) but you can use it in calculations without producing an error, and only need to check the result. – kindall Jun 10 '11 at 17:50
5  
Another exception is the string 'inf'. Either inf or NaN can also be prefixed with a + or - and still be accepted. – agf May 22 '12 at 23:10
1  
If you want to return False for a NaN and Inf, change line to x = float(s); return (x == x) and (x - 1 != x). This should return True for all floats except Inf and NaN – RyanN Mar 15 at 20:29

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.

share|improve this answer
Another common place where Python uses exceptions for basic functions is in hasattr() which is just a getattr() call wrapped in a try/except. Still, exception handling is slower than normal flow control, so using it for something that is going to be true most of the time can result in a performance penalty. – kindall Jun 10 '11 at 17:50

Is some rare cases you might also need to check for complex numbers (e.g. 1+2i), which can not be represented by a float:

def is_number(s):
    try:
        float(s) # for int, long and float
    except ValueError:
        try:
            complex(s) # for complex
        except ValueError:
            return False

    return True
share|improve this answer

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.

share|improve this answer
6  
Your "2e-2" dollars are a float too (an additional argument for using float :) – tzot Dec 9 '08 at 22:59
2  
@tzot NEVER use a float to represent a monetary value. – Luke Nov 7 '12 at 15:25
3  
@Luke: I totally agree with you, although I never suggested using floats to represent monetary values; I just said that monetary values can be represented as floats :) – tzot Nov 8 '12 at 11:19

Just Mimic C#

In C# there are two different functions that handle parsing of scalar values:

  • Float.Parse()
  • Float.TryParse()

float.parse():

def parse(string):
    try:
        return float(string)
    except Exception:
        throw TypeError

Note: If you're wondering why I changed the exception to a TypeError, here's the documentation.

float.try_parse():

def try_parse(string, fail=None):
    try:
        return float(string)
    except Exception:
        return fail;

Note: You don't want to return the boolean 'False' because that's still a value type. None is better because it indicates failure. Of course, if you want something different you can change the fail parameter to whatever you want.

To extend float to include the 'parse()' and 'try_parse()' you'll need to monkeypatch the 'float' class to add these methods.

If you want respect pre-existing functions the code should be something like:

def monkey_patch():
    if(!hasattr(float, 'parse')):
        float.parse = parse
    if(!hasattr(float, 'try_parse')):
        float.try_parse = try_parse

SideNote: I personally prefer to call it Monkey Punching because it feels like I'm abusing the language when I do this but YMMV.

Usage:

float.parse('giggity') // throws TypeException
float.parse('54.3') // returns the scalar value 54.3
float.tryParse('twank') // returns None
float.tryParse('32.2') // returns the scalar value 32.2

And the great Sage Pythonas said to the Holy See Sharpisus, "Anything you can do I can do better; I can do anything better than you."

share|improve this answer
I have been coding in mostly JS lately and didn't actually test this so there may be some minor errors. If you see any, feel free to correct my mistakes. – Evan Plaice Feb 18 '12 at 1:37
To add support for complex numbers see the answer by @Matthew Wilcoxson. stackoverflow.com/a/3335060/290340. – Evan Plaice Feb 18 '12 at 1:47

how about this:

'3.14'.replace('.','',1).isdigit()

which will return true only if there is one or no '.' in the string of digits.

'3.14.5'.replace('.','',1).isdigit()

will return false

edit: just saw another comment ... adding a .replace(badstuff,'',maxnum_badstuff) for other cases can be done. if you are passing salt and not arbitrary condiments (ref:xkcd#974) this will do fine :P

share|improve this answer

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.

share|improve this answer

I did some speed test. Lets say that if the string is likely to be a number the try/except strategy is the fastest possible.If the string is not likely to be a number and you are interested in Integer check, it worths to do some test (isdigit plus heading '-'). If you are interested to check float number, you have to use the try/except code whitout escape.

share|improve this answer
3  
Mind posting the results? – Daniel Goldberg Oct 13 '10 at 21:57

I wanted to see which method is fastest, and turns out catching an exception is the fastest.

import time
import re

check_regexp = re.compile("^\d*\.?\d*$")

check_replace = lambda x: x.replace('.','',1).isdigit()

numbers = [str(float(x) / 100) for x in xrange(10000000)]

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

start = time.time()
b = [is_number(x) for x in numbers]
print time.time() - start # returns 4.10500001907

start = time.time()
b = [check_regexp.match(x) for x in numbers] 
print time.time() - start # returns 5.41799998283

start = time.time()
b = [check_replace(x) for x in numbers] 
print time.time() - start # returns 4.5110001564
share|improve this answer
4  
You should also test performance for invalid cases. No exception is raised with these numbers, which is exactly the "slow" part. – Ugo Méda Jan 28 at 14:17

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.

share|improve this answer

So to put it all together, checking for Nan, infinity and complex numbers (it would seem they are specified with j, not i, i.e. 1+2j) it results in:

def is_number(s):
    try:
        n=str(float(s))
        if n == "nan" or n=="inf" or n=="-inf" : return False
    except ValueError:
        try:
            complex(s) # for complex
        except ValueError:
            return False
    return True
share|improve this answer

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).

share|improve this answer

You can use Unicode strings, they have a method to do just what you want:

>>> s = u"345"
>>> s.isnumeric()
True

Or:

>>> s = "345"
>>> u = unicode(s)
>>> u.isnumeric()
True

http://www.tutorialspoint.com/python/string_isnumeric.htm

http://docs.python.org/2/howto/unicode.html

share|improve this answer
1  
Ahh!!!! Forget it, it only checks if all the characters are numbers. Sorry. – Blackzafiro Mar 4 at 16:33
how about float? – 2er0 Mar 23 at 7:55
def isNumber(token):
    for char in token:
        if not char in string.digits: return False
    return True
share|improve this answer
5  
BZZZZT. Fails on "1.23" and "1e-4" – John Machin Sep 21 '10 at 3:34
Not perfect, see comment above, but still good to know about. Using that type of method is probably a good way to check if a character is a number. – speedplane Dec 19 '10 at 1:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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