import math def eval_python_expression(expr: str) -> float: """ Evaluate a Python expression reliably. This can be used to compute complex nested mathematical expressions, or any python, really. """ return eval(expr)