Execute a script and return its output.
Usage
execute(script)
script: str
The script to execute.
str
The output of the script execution.
>>> execute("print('hi')") 'hi'