I wrote some code for calculating the differential equation and it's solution using sympy, but I'm getting an error, my code : ( example )
from sympy.parsing import sympy_parser
expr=1/2
r='3/2'
r=sympy_parser(r)
I get
TypeError: 'module' object is not callable
What am I doing wrong here ?