How to Create a Simple Calculator in Python
Submitted by Yorkiebar on Saturday, March 15, 2014 - 10:35.
Introduction:
This tutorial is on how to create a simple calculator in Python.
The Theory:
Here's how the program will be structured:
Get the users first number
Get the users second number
Get the users action
Use if statements to perform the calculation
Print out the result
Getting The Users Numbers:
First we want to get the users two numbers to calculate together somehow. We use input statements to allow the user to enter a string, we use an int cast around the input statement to convert their string input to a integer for us to use in our calculations...
This is good but the user could enter an invalid number, so lets add some exception handling...
So now the script creates two variables "pass1" and "pass" and sets them both to minus 1 (-1). Then, while the relevant pass variable is below 0, it asks for a nuumber. If no exception is thrown, the pass variable is set higher than 0 and the loop is passed, otherwise an error statement is printed and pass1 is re-set back below zero (this isn't necessary but it makes it simpler to understand).
Asking For The Action:
Next we want the action for the two numbers, this is similar to before...
Validating The Action and Performing The Calculation:
Finally we want to perform the calculation depending on what the action entered by the user was...
Last but not least, we output the result...
- num1 = int(input("Enter your first number: "));
- num2 = int(input("Enter your second number: "));
- pass1 = -1;
- while (pass1 < 0):
- try:
- num1 = int(input("Enter your first number: "));
- pass1 = 10;
- except ValueError:
- pass1 = -1;
- print("That is not a valid number. It must be a whole number...");
- pass2 = -1;
- while (pass2 < 0):
- try:
- num2 = int(input("Enter your second number: "));
- pass2 = 10;
- except ValueError:
- pass2 = -1;
- print("That is not a valid number. It must be a whole number...");
- pass3 = -1;
- while (pass3 < 0):
- try:
- action = input("Enter your action (+/*-): ");
- if (action == "+" or action == "-" or action == "/" or action == "*"):
- pass3 = 10;
- except:
- pass3 = -1;
- print("That is not a valid action. It must be +, -, /, or *...");
- if (action == "+"):
- end = num1 + num2;
- elif (action == "-"):
- end = num1 - num2;
- elif (action == "/"):
- end = num1 / num2;
- elif (action == "*"):
- end = num1 * num2;
- else:
- print("Error...");
- print("Your result is: " + str(end))
Add new comment
- 29 views