A simple Python project to perform basic arithmetic operations through a console-based calculator bot. The program guides the user to input numbers and an operation, then displays the result.
- Supports the following arithmetic operations:
- Addition (
+
) - Subtraction (
-
) - Multiplication (
*
) - Division (
/
) - Floor Division (
//
) - Modulus (
%
)
- Addition (
- Provides a
/help
command to guide users on available operations. - Handles invalid input gracefully.
- Prevents division by zero with error handling.
- Ensure you have Python installed on your system.
- Clone the repository or download the project files.
- Open a terminal or command prompt in the project directory.
- Run the program using the command:
python calculator_bot.py