Hello when I try the next code with sympy I can not cath the exeption of SyntaxError
from sympy.abc import x, y
try:
e =x + y + x)
# except Sympifyerror
except exception:
# except SyntaxError as error:
# except SyntaxError as ex:
raise SyntaxError('Error during evaluation of sympy expression: '
+ str(ex))
print ("errores")Thanks
