-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssignment1.py
48 lines (38 loc) · 1.18 KB
/
Assignment1.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
def add(x, y):
print(a,"+",b,"=", x+y);
def subtract(x, y):
print(a,"-",b,"=", x-y);
def multiply(x, y):
print(a,"+",b,"=", x*y);
def divide(x, y):
print(a,"+",b,"=", x/y);
m = 'y'
while m == 'y' or m == 'Y':
print("Calculator")
print("1.Addition")
print("2.Subtraction")
print("3.Multiplication")
print("4.Division")
choice=input("Enter your Choice: ")
if choice == '1':
a=float(input('Enter value of a: '))
b=float(input('Enter value of b: '))
add(a,b)
m=input('Do you want to restart the calculator: ')
elif choice == '2':
a=float(input('Enter value of a: '))
b=float(input('Enter value of b: '))
subtract(a,b)
m=input('Do you want to restart the calculator: ')
elif choice == '3':
a=float(input('Enter value of a: '))
b=float(input('Enter value of b: '))
multiply(a,b)
m=input('Do you want to restart the calculator: ')
elif choice == '4':
a=float(input('Enter value of a: '))
b=float(input('Enter value of b: '))
divide(a,b)
m=input('Do you want to restart the calculator: ')
else:
print("Invalid input")