Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
562 B
3
Indexable
Never
def calculate():
    num1 = float(input('Введите число: '))
    num2 = float(input('Введите число: '))
    operation = input("Введите действие (+, -, *, /): ")

    if operation == "+":
        result = num1 + num2

    elif operation == "-":
        result = num1 - num2

    elif operation == "*":
        result = num1 * num2

    elif operation == "/":
        result = num1 / num2

    else:
        print("Некорректный ввод")
        return
    print("результат:", result)