Skip to content

Commit a4b942b

Browse files
Create my project
Python Program to Make a Simple Calculator
1 parent ebfd55d commit a4b942b

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

my project

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Program make a simple calculator
2+
3+
# This function adds two numbers
4+
def add(x, y):
5+
return x + y
6+
7+
# This function subtracts two numbers
8+
def subtract(x, y):
9+
return x - y
10+
11+
# This function multiplies two numbers
12+
def multiply(x, y):
13+
return x * y
14+
15+
# This function divides two numbers
16+
def divide(x, y):
17+
return x / y
18+
19+
20+
print("Select operation.")
21+
print("1.Add")
22+
print("2.Subtract")
23+
print("3.Multiply")
24+
print("4.Divide")
25+
26+
while True:
27+
# Take input from the user
28+
choice = input("Enter choice(1/2/3/4): ")
29+
30+
# Check if choice is one of the four options
31+
if choice in ('1', '2', '3', '4'):
32+
num1 = float(input("Enter first number: "))
33+
num2 = float(input("Enter second number: "))
34+
35+
if choice == '1':
36+
print(num1, "+", num2, "=", add(num1, num2))
37+
38+
elif choice == '2':
39+
print(num1, "-", num2, "=", subtract(num1, num2))
40+
41+
elif choice == '3':
42+
print(num1, "*", num2, "=", multiply(num1, num2))
43+
44+
elif choice == '4':
45+
print(num1, "/", num2, "=", divide(num1, num2))
46+
break
47+
else:
48+
print("Invalid Input")

0 commit comments

Comments
 (0)