Skip to content

Instantly share code, notes, and snippets.

@SANTOSHSHARMA11
Created December 14, 2019 15:27
Show Gist options
  • Save SANTOSHSHARMA11/45dee0c15876a46bb96d5d7ea9e19fec to your computer and use it in GitHub Desktop.
Save SANTOSHSHARMA11/45dee0c15876a46bb96d5d7ea9e19fec to your computer and use it in GitHub Desktop.
using python class basic operation
class cal():
def __init__(self,a,b):
self.a=a
self.b=b
def add(self):
return self.a+self.b
def mul(self):
return self.a*self.b
def div(self):
return self.a/self.b
def sub(self):
return self.a-self.b
a=int(input("Enter first number: "))
b=int(input("Enter second number: "))
obj=cal(a,b)
choice=1
while choice!=0:
print("0. Exit")
print("1. Add")
print("2. Subtraction")
print("3. Multiplication")
print("4. Division")
choice=int(input("Enter choice: "))
if choice==1:
print("Result: ",obj.add())
elif choice==2:
print("Result: ",obj.sub())
elif choice==3:
print("Result: ",obj.mul())
elif choice==4:
print("Result: ",round(obj.div(),2))
elif choice==0:
print("Exiting!")
else:
print("Invalid choice!!")
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment