Skip to content

Instantly share code, notes, and snippets.

@daniel-obrien
daniel-obrien / Maths Calculator.py
Created November 8, 2016 12:51
Simple Calclator
print("Welcome to the Basic Calculator!")
number1=(int(input("Please enter your First Number")))
number2=(int(input("Please enter your Second Number")))
choice=input("Would you like to Add, Subtract, Multiply or Divide? (Use Symbols)")
if choice == "+":
answer1 = number1+number2
print (answer1)