We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduce here: https://sympygamma.com/input/?i=solve+x**2+-+4
Error:
Error: solve x**2 - 4 unsupported operand type(s) for -: 'list' and 'Integer'
The text was updated successfully, but these errors were encountered:
This is likely due to incorrect parsing, I believe the expression is parsed as:
solve(x**2) - 4
Which results in solve(x**2) returning a list, hence the error: (unsupported operand type(s) for -: 'list' and 'Integer')
solve(x**2)
unsupported operand type(s) for -: 'list' and 'Integer'
Sorry, something went wrong.
This could also be the desired behaviour, but either ways it doesn't looks great.
solve(x**2 -4) this fixes #168
No branches or pull requests
Reproduce here: https://sympygamma.com/input/?i=solve+x**2+-+4
Error:
The text was updated successfully, but these errors were encountered: