Handcalcs is a python-based mathematical formula generator that generates mathematical formulas corresponding to LaTeX format by inputting expressions composed of functions and variables, and then can further replace the variables with numbers to derive the calculation results.
Example:
Installation and use:
Installation
pip install handcalcs
Import the package
import handcalcs.render
Enter the formula
%%rendera = 3b = -10c = 2%%renderx = -b + sqrt(b**2 – 4*a*c) / (2*a)
Generate formulas