up vote 89 down vote favorite
15
share [g+] share [fb]

This should be simple - 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?

EDIT: I just wanted to know how to parse a float string to a float, and (separately) an int string to an int. Sorry for the confusing phrasing/original examples on my part.

At any rate, the answer from Harley is what I needed.

link|improve this question

4  
"answer from Harley is what I needed". Can't see how that answer matches your question. But if you're happy, that's all that matters. – S.Lott Dec 19 '08 at 15:35
feedback

10 Answers

up vote 108 down vote accepted
>>> a = "545.2222"
>>> float(a)
545.22220000000004
>>> int(float(a))
545
link|improve this answer
2  
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
9  
Because it's very dangerous to eval() a variable. – Harley Holcombe Nov 8 '10 at 23:03
Because that .00000000000004 is exactly what I want. Anyone know how to make float() behave sanely? – sneak Jun 14 '11 at 0:52
2  
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
feedback
float(x) if '.' in x else int(x)
link|improve this answer
Not really what I was asking, but thats a damn cool solution to the common misconception. – Tristan Havelick Dec 19 '08 at 3:11
1  
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
6  
Nitpick: doesn't work for extreme cases like float("2e-3") – Emile Dec 8 '10 at 14:22
1  
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
3  
@Emile: I wouldn't call "2e-3" an "extreme case". This answer is just broken. – jchl Sep 7 '11 at 10:05
feedback
def num (s):
    try:
        return int(s)
    except exceptions.ValueError:
        return float(s)
link|improve this answer
This is exactly what I've used in the past. – Boojum Dec 19 '08 at 3:55
4  
This is the most Pythonic answer. – Eddie Sullivan Mar 29 '11 at 18:29
feedback

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.

link|improve this answer
feedback

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

link|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
feedback

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'
link|improve this answer
feedback
try:
    float(x) if '.' in x else int(x)
except ValueError:
    print "Not a numeric string."
link|improve this answer
feedback

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)
link|improve this answer
feedback

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

link|improve this answer
4  
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
@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
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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