forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleCalculator.py
56 lines (39 loc) · 1.05 KB
/
SimpleCalculator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Simple Calculator
def add(a, b):
return a + b
def subtract(a, b):
return a - b
def multiply(a, b):
return a * b
def divide(a, b):
try:
return a / b
except ZeroDivisionError:
return "Zero Division Error"
def power(a, b):
return a ** b
def main():
print("Select Operation")
print("1.Add")
print("2.Subtract")
print("3.Multiply")
print("4.Divide")
print("5.Power")
choice = input("Enter Choice(+,-,*,/,^): ")
num1 = int(input("Enter first number: "))
num2 = int(input("Enter Second number:"))
if choice == "+":
print(num1, "+", num2, "=", add(num1, num2))
elif choice == "-":
print(num1, "-", num2, "=", subtract(num1, num2))
elif choice == "*":
print(num1, "*", num2, "=", multiply(num1, num2))
elif choice == "/":
print(num1, "/", num2, "=", divide(num1, num2))
elif choice == "**":
print(num1, "^", num2, "=", power(num1, num2))
else:
print("Invalid input")
main()
if __name__ == "__main__":
main()