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.
|
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. |
||||
|
|
|
|||||||||||||||||||
|
|
|||||||||||||||||
|
|
|||||||||||||||||||||
|
|
This is another method which deserves to be mentioned here, ast.literal_eval:
That is, a safe 'eval'
|
||||
|
|
|
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.
Only good if they're all the same type. |
|||
|
|
|
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:
|
|||||||||||||||
|
|
|
|||
|
|
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
|
|||
|
|
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
|
|||
|
|
|
May be you are looking out for something like this.
floor and ceil are more relevant in some cases then just int(). Cheers |
|||||||||||||||
|
|
|||
|
|
Here's another interpretation of your question. (hint: it's vague) It's possible you're looking for something like this.
Works like this...
Edit. Theoretically, there's an injection vulnerability. The string could, for example be |
|||||
|
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.