I am currently running Python 3.7.2 on Windows 10. I am trying to use this code print('Hello'+input()) but it's not working. When I input a name, say, John, after Python has printed 'Hello', it gives me the following error message:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
John
NameError: name 'John' is not defined
I tried looking for solutions on the internet but most of them are talking about how input() should be raw_input() on Python 2.x but I couldn't find any solution for Python 3.x. Any help would be much appreciated.



import sysand thenprint(sys.version)3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 22:20:52) [MSC v.1916 32 bit (Intel)]