The following code that would work using sympy does not run: ```python import symengine func = symengine.Function('f')('x') func.name ``` Instead you would have to do ```python func.get_name() ```