Function to add two numbers
def add(x, y):
return x + y
# Function to subtract two numbers
def subtract(x, y):
return x - y
# Function to multiply two numbers
def multiply(x, y):
return x * y
# Function to divide two numbers
def divide(x, y):
if y == 0:
return "Cannot divide by zero"
return x / y
# Main calculator loop
while True:
print("Options:")
print("Enter 'add' for addition")
print("Enter 'subtract' for subtraction")
print("Enter 'multiply' for multiplication")
print("Enter 'divide' for division")
print("Enter 'exit' to end the program")
user_input = input(": ")
if user_input == "exit":
break
elif user_input in ("add", "subtract", "multiply", "divide"):
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
if user_input == "add":
print("Result: ", add(num1, num2))
elif user_input == "subtract":
print("Result: ", subtract(num1, num2))
elif user_input == "multiply":
print("Result: ", multiply(num1, num2))
elif user_input == "divide":
print("Result: ", divide(num1, num2))
else:
print("Invalid input. Please enter a valid option.")
You can run this code, and it will allow you to perform basic calculations until you choose to exit the program by typing "exit."