Posted 4 years ago · Author Heres some code I wrote for a calculator in Python. Code num1 = float(input("Enter first number: ")) operator = input("Enter operator: ") num2 = float(input("Enter second number: ")) if operator == "+": print(num1 + num2) elif operator == "-": print(num1 - num2) elif operator == "/": print(num1 / num2) elif operator == "*": print(num1 * num2) else: print("Error: Invalid operator."
Posted 3 years ago Nice add Sammy. I agree with Soli. Its always nice to see new post esp when we can try them out Thanks for sharing