Feb-17-2018, 10:15 PM
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> input('enter name please: ') print('Hello ', name) SyntaxError: multiple statements found while compiling a single statement >>>In interactive shell one line at the time with <Enter>.
>>> name = input('enter name please: ') enter name please: Kent >>> print('Hello ', name) Hello KentTo Run as script.
![[Image: Wn7asS.jpg]](https://imageshack.com/a/img922/1534/Wn7asS.jpg)
IDLE is not good,look at forum there are many discussion about IDE/Editors/REPL.