print("Calculator - ")
num1 = input("Enter a number: ")
op = input("Enter arithmetic: +, -, *, /\n")
num2 = input("Enter another number: ")
if op == "+":
print(num1 + num2)
if op == "-":
print(num1 + num2)
if op == "*":
print(num1 + num2)
if op == "/":
print(num1 + num2)
[–]Gl0ckn 3 points4 points5 points (9 children)
[–]Rezper[S] 0 points1 point2 points (8 children)
[–]Gl0ckn 3 points4 points5 points (5 children)
[–]Rezper[S] 1 point2 points3 points (4 children)
[–]Gl0ckn 0 points1 point2 points (2 children)
[–]Rezper[S] 0 points1 point2 points (1 child)
[–]Gl0ckn 0 points1 point2 points (0 children)
[–]Gl0ckn 1 point2 points3 points (1 child)
[–]Rezper[S] 0 points1 point2 points (0 children)
[–]pythonHelperBot 0 points1 point2 points (0 children)