A simple math interpreter.
- Python 3.6+
- Colorama package
- Basic arithmetic (+, -, *, /)
- Order of Operations
- Powers, roots, factorials
git clone https://github.com/sidsurakanti/calculator.git
cd /path/to/project/
pip install -r requirements.txt
>>> 6 * (12 + 56)
408.0
>>> 77 * 12
924.0
>>> 25 * 0.5
12.5
>>> 999 + 998
1997.0
>>>