I\'m trying to convert a python file into an executable. So far so good. But when I try to run the executable I get the following error message:
SyntaxError:
As someone else mentioned, you are running "python hello.exe" or "py hello.exe". So you are trying to run an executable with python.. Try just running the executable without python.
You simply need to run "hello.exe".