Задать вопрос
  • Почему выдается ошибка в данном коде?

    @il8
    да ясо степика)))
    подскажите еще ответ пожалуйта
    мой код не работает на степике а в IDLE работает прекрсасно
    Почему так происходит?
    =input()
    z=input()
    y=input()
    if y=='+':
    print (float(x) + float(z))
    if y=='-':
    print (float(x) - float(z))
    if y=='*':
    print (float(x) * float(z))
    if y=='/' and z=='0':
    print('Деление на 0!')
    if y=='/' and z!='0':
    print(float(x) / float(z))
    if y=='mod' and z=='0':
    print ('Деление на 0!')
    if y=='mod' and z!='0':
    print(float(x)%float(z))
    if y=='pow':
    print(float(x)**float(z))
    if y=='div' and z=='0':
    print('Деление на 0!')
    if y=='div' and z!='0':
    print (float(x)//float(z))

    >