sympy
Publicado por Pedro (5 intervenciones) el 09/03/2019 09:02:31
Hola, cuando pruebo el siguiente código en python y con sympy no puedo capturar la exepcion de sintaxError:
1
2
3
4
5
6
7
8
9
10
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")
Valora esta pregunta
0