from operator import add, sub
commands = {
'прибавить': add,
'отнять': sub,
}
def ans_input(op):
ans1 = float(input('Введите первое число:'))
ans2 = float(input('Введите другое число:'))
return op(ans1, ans2)
while True:
user_input = input('Ввод:')
if user_input == 'выйти':
break
else:
if user_input not in commands:
continue
result = ans_input(commands[user_input])
print('Ответ', result)
input('ENTER')