A beginner-friendly Python program that performs basic arithmetic operations โ addition, subtraction, multiplication, and division โ based on user input.
- Asks the user for two numbers
- Prompts for an operation (
+
,-
,*
, or/
) - Performs the operation
- Prints the result to the console
Enter the first number: 10
Enter the second number: 5
Enter an operation (+, -, *, /): *
10.0 * 5.0 = 50.0
calculator.py
: Main program file
Augusto Mate
๐ง mate.augusto.mz@gmail.com
This project is licensed under the MIT License.