-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator_Function.py
56 lines (43 loc) · 1.2 KB
/
calculator_Function.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
import os
def add(num1, num2):
"""Addition of two number . . """
return num1 + num2
def sub(num1, num2):
"""Substraction of two number. . """
return num1 - num2
def mul(num1, num2):
"""Multiplication of two number"""
return num1 * num2
def div(num1, num2):
"""Division of two number . . """
return num1 / num2
# dictionary for operations . .
operations = {
"+": add,
"-": sub,
"*": mul,
"/": div,
}
isContinue = True
while isContinue:
num1 = float(input("Enter a number : "))
num2 = float(input("Enter number : "))
for symbols in operations:
print(symbols)
choice = input("Enter which function you like to do : \n")
if choice == '+':
ans = add(num1, num2)
elif choice == '-':
ans = sub(num1, num2)
elif choice == '*':
ans = mul(num1, num2)
elif choice == '/':
ans = div(num1, num2)
else:
print("Wrong choice . . .")
print(f"{num1} {choice} {num2} = {ans}")
should_continue = input("Are there any other calculations ? 'yes' or 'no' ")
if should_continue == 'no':
isContinue = False
elif should_continue == 'yes':
os.system('cls')