WAP to create a simple calculator? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

WAP to create a simple calculator?

def add(a,b): return a+b def sub(a,b): return a-b def div(a,b): return a/b def mul(a,b): return a*b print ("enter your choice. ") print("1.add") print("2.sub") print("3.div ") print ("4.mul ") Select =input ("enter your choice: ") x=int(input ("enter your first number:- ") y=int(input ("enter your 2nd number :-") if select =='1': print(add(x,y)) if select=='2': print(sub(x,y)) if select =='3': print (div(x,y)) if select =='4': print(mul(x,y)

30th Nov 2017, 4:02 PM
Jabir Ibn Hasan
Jabir Ibn Hasan - avatar
1 Answer
+ 1
😊
15th Dec 2017, 1:26 PM
Jabir Ibn Hasan
Jabir Ibn Hasan - avatar