def run(code: str): """Execute the python code. Args: code: Python code to execute, such as `print("hello world")` """ return eval(code)