I tried "nb = raw_input('Choisis un nombre : ')" and the program stoped with this message in the console :
-----------------------------------ERROR-----------------------------------
Traceback (most recent call last):
File "x:\project\metal\python\GUI\GUI\Logic\Interpreter.py", line 293, in evaluateScript
File "", line 1, in
NameError: name 'raw_input' is not defined
I also tried nb = input('Choisis un nombre : ') and it did the same thing with this message :
-----------------------------------ERROR-----------------------------------
Traceback (most recent call last):
File "x:\project\metal\python\GUI\GUI\Logic\Interpreter.py", line 293, in evaluateScript
File "", line 1, in
RuntimeError: input(): lost sys.stdin
Maybe I'me doing sth wrong ? 