- [Documentation](../README.md) - [Learn Python the Hard Way](../README_LTWHW.md) # Introduction This is a simple text based calculator written in Python. The user inputs two operands followed by an operator, and the program performs the calculation and outputs the result. ## Example Usage: ``` $ python calc.py 2 + 3 5 ```