How do I execute a string containing Python code in Python?
|
|
|||||||||||
|
|
|
Use eval. |
||
|
|
|
|
Check out eval:
|
||
|
|
|
|
In the example a string is executed as code using the exec function.
|
||
|
|
|
The most logical solution would be to use the built-in eval() function .Another solution is to write that string to a temporary python file and execute it. |
||
|
|
|
|
For statements, use exec ie.
When you need the value of an expression, use eval. eg
However, the first step should be to ask yourself if you really need to. Executing code should generally be the position of last resort: It's slow, ugly and dangerous if it can contain user-entered code. You should always look at alternatives first, such as higher order functions, to see if these can better meet your needs. |
||
|
|
|
|
Just a response to hekevintran's advice. I don't think you can redirect stderr/stdout with exec. See this page http://docs.python.org/library/sys.html?highlight=stderr#sys.stderr it says "Changing these objects doesn’t affect the standard I/O streams of processes executed by os.popen(), os.system() or the exec*() family of functions in the os module." one approach I am experimenting with is: try: result=eval(user_input) except: exec(user_input) eval returns a value, but doesn't work for all commands. exec works for all, but doesn't return a value. Still trying to figure out a way around this |
||
|
|
