Let's say I have a standard Python string (such as one obtained from raw_input()), maybe "2 + 2" for simplicity's sake. I'd like to convert this string to standard math operations in Python, such that "2 + 2" would return 4. Is there an easy way to do this, or would I have to split on the spaces and parse each number/symbol manually, then do the math based on what I find? Do I want Regex?
|
|
|||||||||||||
|
|
Use the eval function.
Output:
You can even use variables or regular python code.
Output:
You also can get return values:
Output:
Or call functions:
Output:
In case you want to write a parser, maybe instead you can built a python code generator if that is easier and use eval to run the code. With eval you can execute any Python evalution. On the other hand, as others have mentioned, eval is not safe so use it wisely. |
||||
|
|
|
The easiest way is to use
Pay attention to the fact I included spaces in the string. |
|||||||
|
|
Regex won't help much. First of all, you will want to take into account the operators precedence, and second, you need to work with parentheses which is impossible with regex. Depending on what exactly kind of expression you need to parse, you may try either Python AST or (more likely) pyparsing. But, first of all, I'd recommend to read something about syntax analysis in general and the Shunting yard algorithm in particular. And fight the temptation of using |
|||||||||||||||
|
|
A simple way but dangerous way to do this would be to use
Otherwise, you would have to come up with something a bit stricter than this. You could also do it conversely, using a regex to find if certain things are not in it, such as numbers and operations. Also you could check to see if the input contains certain commands. |
|||
|
|
|
The asker commented:
If he's writing a math expression solver as a learning exercise, using You might consider making a calculator using Reverse Polish Notation instead of standard math notation. It simplifies the parsing considerably. It would still be a good exercise |
|||||||||||||
|
|
If you want to do it safely, you may want to use http://docs.python.org/library/ast.html#ast.literal_eval from this answer: Python "safe" eval (string to bool/int/float/None/string) It might not do math, but you could parse the math operators and then operate on safely evaluated terms. |
|||
|
|
