I'm a C programmer, and started with python today, just for a test, I throw some very simple code, and I get this very crazy nameError, I've saw a couple of then here, but they dont seem to relate.
person = input('Enter your name: ')
print('Hello', person)
This is what I get at the terminal:
C:\Users\Matt\Desktop\Python>python input.py
Enter your name: Matheus
Traceback (most recent call last):
File "input.py", line 3, in <module>
person = input('Enter your name: ')
File "<string>", line 1, in <module>
NameError: name 'Matheus' is not defined
Does anybody knows how can I fix that?