You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mpmath is a library, but I bet some people use it as a mp-calculator. Could we provide more useful interface for interactive work? I think so.
I'll suggest diofant-like interface: https://diofant.readthedocs.io/en/latest/cli.html (which is more or less an equivalent of the isympy script, but uses more robust methods of transformation for code). Given this, per default we could have in python -m mpmath shell something like that:
The mpmath is a library, but I bet some people use it as a mp-calculator. Could we provide more useful interface for interactive work? I think so.
I'll suggest diofant-like interface: https://diofant.readthedocs.io/en/latest/cli.html (which is more or less an equivalent of the isympy script, but uses more robust methods of transformation for code). Given this, per default we could have in
python -m mpmathshell something like that:from mpmath import *namespacempf(numerator)/denominator)10.9will bempf('10.9'))Does this make sense?