|
|
back to boardPython 3, wrong answer although it works in Jupyter, why? Posted by Liza 11 Jul 2019 10:57 a,b=input('Введите числа через пробел: ').split(" ") a=int(a) b=int(b) print(a+b) test 1, wrong answer :( Re: Python 3, wrong answer although it works in Jupyter, why? Posted by Liza 11 Jul 2019 11:06 Got it. The text in Russian was not a good idea. just this: a,b=input().split() a=int(a) b=int(b) print(a+b) accepted! Re: Python 3, wrong answer although it works in Jupyter, why? Hello Lisa . It and my error ) a = float(input(" ")) b = float(input(" ")) print(a+b) Runtime error Rus : Привет , у меня такая же ошибка . Выдает Runtime error |
|
|