Skip to content

Instantly share code, notes, and snippets.

View nauman-chaudhary's full-sized avatar
🛠️
Building Stuff

Nauman Naeem nauman-chaudhary

🛠️
Building Stuff
View GitHub Profile
@nauman-chaudhary
nauman-chaudhary / Calculator.py
Last active March 22, 2016 13:41
Assignment 1
print ('Simple Calculator by BSE14M503')
print ('1.Addition')
print ('2.Subtraction')
print ('3.Multiplication')
print ('4.DIvision')
print ('5.Moduluds')
op = int(input('Choose Operation: '))
first = int(input('Enter first operand: '))
second = int(input('Enter sencond operand: '))
if op == 1: