Hello I'm very new to python and programming over all and I'm getting this error
>>> python C:\Users\Spravce\Desktop\hello1.py
File "<stdin>", line 1
python C:\Users\Spravce\Desktop\hello1.py
^
SyntaxError: invalid syntax
Hello I'm very new to python and programming over all and I'm getting this error
>>> python C:\Users\Spravce\Desktop\hello1.py
File "<stdin>", line 1
python C:\Users\Spravce\Desktop\hello1.py
^
SyntaxError: invalid syntax
You are trying to run python inside the Python Interactive Shell
https://docs.python.org/3/tutorial/interpreter.html#interactive-mode
exit from it using command quit()
and run your command in the system shell instead :)