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
In python's repl:
import sympy sympy.init_printing(use_unicode=False) sympy.simplify(x ** 2 + 2 * x + 1)
the result is
2 x + 2*x + 1
However, in ptpython, it always be
x ** 2 + 2 * x + 1
It seems that sympy.init_printing cannot work in ptpython.
sympy.init_printing
The text was updated successfully, but these errors were encountered:
This is probably due to ptpython not yet using ``sys.displayhook`.
Sorry, something went wrong.
No branches or pull requests
In python's repl:
the result is
However, in ptpython, it always be
It seems that
sympy.init_printing
cannot work in ptpython.The text was updated successfully, but these errors were encountered: