Im teaching myself python and have downloaded the newest version of python 2 and also notepad++.
I have this script in notepad++ saved as Enter_your_name.py
#Program that Welcomes user ask='Enter your name:' raw_input(ask) When I go to the python interpreter and issue the command
python Enter_your_name.py I get a syntax error.
Is this because I am not in the correct directory?
Edit
>>>python Enter_your_name.py File "(stdin)", line 1 python Enter_your_name.py ^ SyntaxError: invalid syntax >>>