Добрый день!
Почему-то, если вводить неверное значение во время запроса "Operation", то программа просто завершается, вместо того, чтобы выдать сообщение, которое описано в случае "else". В чем может быть проблема?
x = int(input("First number: "))
y = int(input("Second number: "))
operation = input("Operation: ")
result = None
if operation == "+":
result = x + y
elif operation == "-":
result = x - y
elif operation == "*":
result = x * y
elif operation == "/":
result = x / y
else:
print = ("Something wrong!")
if result is not None:
print("Result: ", result)