Welcome to the Python Calculator! This simple yet versatile command-line application performs essential arithmetic operations with ease.
- Addition ➕: Computes the sum of two numbers.
- Subtraction ➖: Computes the difference between two numbers.
- Multiplication ✖️: Computes the product of two numbers.
- Division ➗: Computes the quotient of two numbers.
- Exponentiation ✨: Computes the power of one number raised to another.
- Initialization: The program starts by displaying a logo and prompts you to enter the first number. 🧮
- Operation Selection: Choose an arithmetic operation from the available list. 📋
- Perform Calculation: Enter the second number, and the calculator performs the chosen operation. 🔢
- Continuous Use: Decide whether to continue calculations with the result or start a new calculation. 🔄
- Restart Option: If you choose to start anew, the calculator resets and begins fresh. 🆕
This calculator uses a dictionary to map operations to their functions and includes a loop for handling multiple calculations in one session. Enjoy a user-friendly experience with interactive prompts and clear outputs! 😊