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

In Python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31?

I just want to know how to parse a float string to a float, and (separately) an int string to an int.

share|improve this question

12 Answers

up vote 301 down vote accepted
>>> a = "545.2222"
>>> float(a)
545.22220000000004
>>> int(float(a))
545
share|improve this answer
5  
What about rounding? 545.7 should be 546. float(a+0.5). See below. – Nick Oct 21 '10 at 14:07
Why not eval("1.5") ? – ssal Nov 8 '10 at 16:00
47  
Because it's very dangerous to eval() a variable. – Harley Holcombe Nov 8 '10 at 23:03
1  
Because that .00000000000004 is exactly what I want. Anyone know how to make float() behave sanely? – sneak Jun 14 '11 at 0:52
25  
Floats on computers are strange things, see en.wikipedia.org/wiki/IEEE_754 for more information. If you want precision, use decimal instead: docs.python.org/library/decimal.html – Harley Holcombe Jun 14 '11 at 22:09
def num (s):
    try:
        return int(s)
    except exceptions.ValueError:
        return float(s)
share|improve this answer
This is exactly what I've used in the past. – Boojum Dec 19 '08 at 3:55
9  
This is the most Pythonic answer. – Eddie Sullivan Mar 29 '11 at 18:29
More pythonic when write in one line – Louis Jun 20 '12 at 10:39
7  
Any reason for doing except exceptions.ValueError instead of except ValueError:? – dbr Jun 20 '12 at 15:58
5  
implicit mixing floats/ints might lead to subtle bugs due to possible loss of precision when working with floats or to different results for / operator on floats/ints. Depending on context it might be preferable to return either int or float, not both. – J.F. Sebastian Nov 16 '12 at 14:35
show 2 more comments
float(x) if '.' in x else int(x)
share|improve this answer
1  
Not really what I was asking, but thats a damn cool solution to the common misconception. – Tristan Havelick Dec 19 '08 at 3:11
2  
I know you use this form a lot, but if you could note as (2.5+), it might prevent some insanity when 2.4 folk try to use it :) – Gregg Lind May 24 '09 at 19:01
21  
Nitpick: doesn't work for extreme cases like float("2e-3") – Emile Dec 8 '10 at 14:22
7  
Note : be careful when dealing with money amount passed as strings, as some countries use "," as decimal separators – Ben G Jul 8 '11 at 11:17
32  
@Emile: I wouldn't call "2e-3" an "extreme case". This answer is just broken. – jchl Sep 7 '11 at 10:05
show 1 more comment

This is another method which deserves to be mentioned here, ast.literal_eval:

This can be used for safely evaluating strings containing Python expressions from untrusted sources without the need to parse the values oneself.

That is, a safe 'eval'

>>> import ast
>>> ast.literal_eval("545.2222")
545.2222
>>> ast.literal_eval("31")
31
share|improve this answer

codelogic and harley are correct, but keep in mind if you know the string is an integer (e.g. 545) you can call int("545") without first casting to float.

If your strings are in a list, you could use the map function as well.

>>> x = ["545.0", "545.6", "999.2"]
>>> map(float, x)
[545.0, 545.60000000000002, 999.20000000000005]
>>>

Only good if they're all the same type.

share|improve this answer

The question seems a little bit old. But let me suggest a function parseStr which makes sth similar, i.e. returns integer or float and if a given ASCII string cannot be converted to none of them it returns it untouched. The code of course might be adjusted to do only what you want:

   >>> import string
   >>> parseStr = lambda x: x.isalpha() and x or x.isdigit() and \
   ...                      int(x) or x.isalnum() and x or \
   ...                      len(set(string.punctuation).intersection(x)) == 1 and \
   ...                      x.count('.') == 1 and float(x) or x
   >>> parseStr('123')
   123
   >>> parseStr('123.3')
   123.3
   >>> parseStr('3HC1')
   '3HC1'
   >>> parseStr('12.e5')
   1200000.0
   >>> parseStr('12$5')
   '12$5'
   >>> parseStr('12.2.2')
   '12.2.2'
share|improve this answer
1  
1e3 is a number in python, but a string according to your code. – Cees Timmerman Oct 4 '12 at 13:24
2  
Aside from that, it's almost 5 times as fast as a nested try, except! Using lambda instead of def also saves 5% execution time. Tested with 32-bit Python 3.2 on 64-bit Windows 7. – Cees Timmerman Oct 4 '12 at 13:55
Good point, Cees. Thanks. I appreciate benchmarking too :) How about a modified version of parseStr using regular expressions? It will probably hurt performance but someone might find it useful. The new parseStr function: parseStr = lambda x: x.isalpha() and x or x.isdigit() and int(x) or re.match('(?i)^-?(\d+\.?e\d+|\d+\.\d*|\.\d+)$',x) and float(x) or x – krzym Oct 9 '12 at 11:20
Using re is almost twice as slow as the try, except method, even with the 3% faster version that uses only match. Tested using time.time() and range(1000000) on a quadcore Intel Xeon 2.93 GHz. – Cees Timmerman Oct 9 '12 at 12:17
I ran a few tests using: parseStrRE = lambda x: x.isalpha() and x or x.isdigit() and int(x) or re.match('(?i)^-?(\d+\.?e\d+|\d+\.\d*|\.\d+)$', x) and float(x) or x and the try/except method modified to return strings if both int and float raise ValueError for the following test cases: ['1e3', '1.e3', '123', '-1234.12', 'e', 'ee', '1e', 'e2', '3hc1']. The execution time is as 2.7 (try/except) : 1.25 (parseStrRE) : 0.85 (original parseStr). Short-circuit expressions I employed speed things up since the result might actually be returned by evaluating only a part of the expression. – krzym Oct 9 '12 at 16:05
show 1 more comment

float("545.2222") and int(float("545.2222"))

share|improve this answer
This will give you a float object if your string happens to be "0" or "0.0", rather than the int it gives for other valid numbers. – Brian Dec 19 '08 at 8:42

You need to take into account rounding to do this properly.

I.e. int(5.1) => 5 int(5.6) => 5 -- wrong, should be 6 so we do int(5.6 + 0.5) => 6

def convert(n):
    try:
        return int(n)
    except ValueError:
        return float(n + 0.5)
share|improve this answer
Good point. That causes inflation, though, so Python 3 and other modern languages use banker's rounding. – Cees Timmerman Oct 4 '12 at 12:58

The yaml parser is great at getting the best Python type. Try yaml.load(), then you can use isinstance() to test for type if needed

>>> import yaml

>>> a = "545.2222"
>>> result = yaml.load(a)
>>> result
545.22220000000004
>>> type(result)
<type 'float'>

>>> b = "31"
>>> result = yaml.load(b)
>>> result
31
>>> type(result)
<type 'int'>

>>> c = "HI"
>>> result = yaml.load(c)
>>> result
'HI'
>>> type(result)
<type 'str'>
share|improve this answer

May be you are looking out for something like this.

In [78]: s="545.22222"

In [79]: eval(s)
Out[79]: 545.22221999999999

In [80]: import math

In [81]: math.ceil(eval(s))
Out[81]: 546.0

In [82]: math.floor(eval(s))
Out[82]: 545.0

floor and ceil are more relevant in some cases then just int().

Cheers

share|improve this answer
7  
I believe is generally bad practice to use eval in this way. float() and int() should be used. (Assuming input is read from another source) >>> open('dummy.txt','w').close() >>> os.path.exists('dummy.txt') True >>> eval('os.remove("dummy.txt")') >>> os.path.exists('dummy.txt') False – monkut Dec 19 '08 at 2:21
1  
second time i saw ipy today, and never heard of it before. slick interpreter. – Dustin Getz Dec 19 '08 at 2:33
@monkut: I cannot make out what u mean't by the example: (Assuming input is read from another source) >>> open('dummy.txt','w').close() >>> os.path.exists('dummy.txt') True >>> eval('os.remove("dummy.txt")') >>> os.path.exists('dummy.txt') False ) can u elaborate in words what u meant – JV. Dec 19 '08 at 3:59
2  
@JV: monkut is referring to the fact that if your input comes from some untrusted source, it could be doing anything when evaled. Not just producing an integer, but deleting files (as in monkuts' example), downloading viruses - pretty much anything. Hence the danger flags for eval in such cases. – Brian Dec 19 '08 at 8:40
try:
    float(x) if '.' in x else int(x)
except ValueError:
    print "Not a numeric string."
share|improve this answer
This is a duplicate of Dino Viehland's answer (which is incorrect). – Cees Timmerman Oct 4 '12 at 12:46

Here's another interpretation of your question. (hint: it's vague) It's possible you're looking for something like this.

def parseIntOrFloat( aString ):
    return eval( aString )

Works like this...

>>> parseIntOrFloat("545.2222")
545.22220000000004
>>> parseIntOrFloat("545")
545


Edit. Theoretically, there's an injection vulnerability. The string could, for example be "import os; os.abort()". Without any background on where the string comes from, however, the possibility is theoretical speculation. Since the question is vague, it's not at all clear if this vulnerability actually exists or not.

share|improve this answer
3  
Even if his input is 100% safe, eval() is over 3 times as slow as try: int(s) except: float(s). – Cees Timmerman Oct 4 '12 at 13:12

protected by jamylak Apr 10 at 11:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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