a = float(input()) b = float(input()) c = input() if b == 0 and (c == 'div' or 'mod' or '/'): print('Деление на 0!') elif c == '+': print(a + b) elif c == '-': print(a - b) elif c == '*': print(a * b) elif c == '/': print(a / b) elif c == 'mod': print (a % b) elif c == 'div': print(a // b) elif c == 'pow': print (a ** b )
1,0
1.0
mod
Получается такая ошибочка:
Traceback (most recent call last):
File “jailed_code”, line 1, in <module>
a = float(input())
ValueError: could not convert string to float: ‘1,0’
Подскажите, как можно это исправить ? Что бы запятая сама менялась на точку