## execute()


Execute a script and return its output.


Usage


``` python
execute(script)
```


## Parameters


`script: str`  
The script to execute.


## Returns


`str`  
The output of the script execution.


## Examples

``` python
>>> execute("print('hi')")
```

'hi'
